leetcode-206 Reverse Linked List

Posted tingweichen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-206 Reverse Linked List相关的知识,希望对你有一定的参考价值。

Reverse a singly linked list.

Example:

Input: 1->2->3->4->5->NULL
Output: 5->4->3->2->1->NULL
想法:设置两个指针,一个指向当前节点,另一个指向当前节点的写一个节点。然后逐个反转
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* reverseList(struct ListNode* head) {

    if(head==NULL){
        return head;
    }
    struct ListNode *p=head->next;//p指针指向要被反转的链表
    head->next=NULL;//让head指向空
    while(p!=NULL){
        struct ListNode *tmp=p->next;//ptmp指向p的下一个节点
        p->next=head;//将p指向head
        head=p;//反转完毕,head移动到p的位置
        p=tmp;//p移动到tmp的位置   
    }
    return head;

}

以上是关于leetcode-206 Reverse Linked List的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 206 Reverse Linked List 链表

LeetCode 206 Reverse Linked List

Leetcode 206: Reverse Linked List

[LeetCode]206. Reverse Linked List

Leetcode 206. Reverse Linked List

leetcode 206. Reverse Linked List