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

leetcode No206. Reverse Linked List

时间:2016-08-09 17:30:34      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

Question:

Reverse a singly linked list.

翻转链表

Algorithm:

见程序

Accepted Code:

/**
 * 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) {
        if(head==NULL||head->next==NULL)
            return head;
        ListNode* l1=NULL;
        ListNode* l2=head;
        while(l2)
        {
            ListNode* tmp=l2->next;
            l2->next=l1;
            l1=l2;
            l2=tmp;
        }
        return l1;
    }
};



leetcode No206. Reverse Linked List

标签:

原文地址:http://blog.csdn.net/u011391629/article/details/52164389

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