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

Reverse Linked List

时间:2015-05-05 19:34:55      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:leetcode   链表反转   递归   

Reverse a singly linked list.

click to show more hints.

Hint:

A linked list can be reversed either iteratively or recursively. Could you implement both?

思路:

      迭代的方式,可以使用一个哨兵节点,方便反转;

      递归的方式,把链表分成左右两部分,左边的是反转好的,右边的是待反转的;每次把右边的第一个节点A揪下来,A->next=LeftList;就好了。


递归代码如下:

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







Reverse Linked List

标签:leetcode   链表反转   递归   

原文地址:http://blog.csdn.net/u010786672/article/details/45506279

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