码迷,mamicode.com
首页 > 其他好文 > 详细

206.反转链表

时间:2020-07-18 22:12:35      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:str   val   http   int   链表   init   nod   return   href   

原题链接

题解

利用双指针算法,直接让后面一个指向前面一个

代码如下

/**
 * 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* p = NULL;
        ListNode* q = head;
        while(q != NULL){
            ListNode* r = q->next;
            q->next = p;
            p = q, q = r;
        }
        return p;
    }
};

206.反转链表

标签:str   val   http   int   链表   init   nod   return   href   

原文地址:https://www.cnblogs.com/Lngstart/p/13336629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!