Loading

206. 反转链表

题目

 

代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        //头插法解决问题
        ListNode* root=nullptr;
        while(head!=nullptr)
        {
            auto temp=head->next;
            head->next=root;
            root=head;
            head=temp;
        }
        return root;
    }
};

 

 

思路

直接用头插法原地逆转链表,递归的方法同理。

posted @ 2018-09-15 07:59  李正浩  阅读(63)  评论(0编辑  收藏  举报