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

LeetCode 206. Reverse Linked List(迭代和递归两种实现)

时间:2017-04-26 15:45:00      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:private   node   leetcode   rman   turn   div   tno   尾递归   ==   

递归的代码比迭代的代码看起来更清爽一些,也是由于递归对行为进行了抽象吧。

注意到,这是一个尾递归函数。一些编译器会将它优化为迭代,这样一方面,在代码层面保持了清晰的逻辑和可读性。一方面保持了代码的性能。


代码:

class Solution
{
public:
	ListNode* reverseList(ListNode* head)
	{
		// return iteratively(head);
		return recursively(nullptr, head);
	}

private:
	ListNode* iteratively(ListNode *head)
	{
		auto cur = head;
		for (ListNode* pre = nullptr; cur != nullptr;)
		{
			if (cur->next == nullptr)
			{
				cur->next = pre;
				return cur;
			} else
			{
				swap(pre, cur->next);
				swap(pre, cur);
			}
		}
		return nullptr;
	}

	// note that this tail recursive algo should be transformed into iterate algo to obtain the better performance
	ListNode* recursively(ListNode *pre, ListNode *cur)
	{
		if (cur == nullptr)
		{
			return pre;
		} else
		{
			swap(pre, cur->next);
			return recursively(cur, pre);
		}
	}
};



LeetCode 206. Reverse Linked List(迭代和递归两种实现)

标签:private   node   leetcode   rman   turn   div   tno   尾递归   ==   

原文地址:http://www.cnblogs.com/liguangsunls/p/6768409.html

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