反转链表-哨兵

反转链表

http://www.nowcoder.com/questionTerminal/75e878df47f24fdc9dc3e400ec6058ca

一、递归

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
            val(x), next(NULL) {
    }
};*/
class Solution {
public:
    ListNode* ReverseList(ListNode* pHead) {

        if(  (nullptr==pHead)||nullptr==(pHead->next) )
        {
            return pHead;
        }

        ListNode * ret=ReverseList( pHead->next );
        //下面的代码,还可以优化,画图知道用pHead->next->next=pHead;能抵挡过下面的4行
        ListNode * temp=ret;
        while( nullptr!=(temp->next) )
        {
            temp=temp->next;
        }
        temp->next=pHead;
        pHead->next=nullptr;

        return ret;
    }
};

二、迭代——单哨兵解法

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
            val(x), next(NULL) {
    }
};*/
class Solution {
public:
    ListNode* ReverseList(ListNode* pHead) {
        ListNode * ret=nullptr;

        while( nullptr!=pHead )
        {
            ListNode * temp=pHead->next;
            pHead->next=ret;
            ret=pHead;

            pHead=temp;
        }

        return ret;
    }
};
全部评论

相关推荐

10-28 14:42
门头沟学院 Java
watermelon1124:因为嵌入式炸了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务