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

反转链表

时间:2017-08-05 20:34:10      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:scribe   nod   next   while   reverse   subject   反转链表   targe   ==   

题目描述

输入一个链表,反转链表后,输出链表的所有元素
/*
struct ListNode {
	int val;
	struct ListNode *next;
	ListNode(int x) :
			val(x), next(NULL) {
	}
};*/
class Solution {
public:
    ListNode* ReverseList(ListNode* pHead) {
		if(NULL==pHead || NULL==pHead->next)	return pHead;
        ListNode *p,*q,*r;
        p=pHead;
        q=pHead->next;
        pHead->next=NULL;
        while(q) {
            r=q->next;
            q->next=p;
            p=q;
            q=r;
        }
        pHead=p;
		return pHead;
    }
};

  

下面这思路居然 溢出,超时!!!

ActList* ReverseList3(ActList* head)
{
	ActList* p;
	ActList* q;
	p=head->next;
	while(p->next!=NULL){
		q=p->next;
		p->next=q->next;
		q->next=head->next;
		head->next=q;
	}

	p->next=head;//相当于成环
	head=p->next->next;//新head变为原head的next
	p->next->next=NULL;//断掉环
	return head;  
}

  http://blog.csdn.net/feliciafay/article/details/6841115

http://blog.csdn.net/hyqsong/article/details/49429859

http://www.cnblogs.com/byrhuangqiang/p/4311336.html

反转链表

标签:scribe   nod   next   while   reverse   subject   反转链表   targe   ==   

原文地址:http://www.cnblogs.com/dd2hm/p/7291247.html

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