HBU DS1-2 链表逆置 (20分)

    科技2022-08-12  104

    1-2 链表逆置 (20分)

    本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。链表结点定义如下:

    struct ListNode { int data; struct ListNode *next; };

    函数接口定义:

    struct ListNode *reverse( struct ListNode *head );

    其中head是用户传入的链表的头指针;函数reverse将链表head逆置,并返回结果链表的头指针。

    裁判测试程序样例:

    #include <stdio.h> #include <stdlib.h> struct ListNode { int data; struct ListNode *next; }; struct ListNode *createlist(); /*裁判实现,细节不表*/ struct ListNode *reverse( struct ListNode *head ); void printlist( struct ListNode *head ) { struct ListNode *p = head; while (p) { printf("%d ", p->data); p = p->next; } printf("\n"); } int main() { struct ListNode *head; head = createlist(); head = reverse(head); printlist(head); return 0; } /* 你的代码将被嵌在这里 */

    输入样例:

    1 2 3 4 5 6 -1

    输出样例:

    6 5 4 3 2 1

    思路:就是每次循环把当前节点的指针p指向上一个节点pre,为了不使当前节点的下一个节点丢失,用temp存下下一个节点的地址。

    代码:

    /* 你的代码将被嵌在这里 */ struct ListNode *reverse(struct ListNode *head) { struct ListNode *p = head, *pre = NULL, *temp=NULL; while (p) { temp = p->next;//temp 当前节点的下一个节点 p->next = pre;//p的next指向上一个节点 pre = p;//更新pre p = temp;//更新p } return pre; }
    Processed: 0.019, SQL: 8