141环形链表(哈希表、快慢双指针)

1、题目描述

给定一个链表,判断链表中是否有环。

为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。

进阶:

你能用 O(1)(即,常量)内存解决此问题吗?

2、示例

输入:head = [3,2,0,-4], pos = 1
输出:true
解释:链表中有一个环,其尾部连接到第二个节点。

3、题解

解法一:

基本思想:哈希表,时间复杂度O(n)空间复杂度O(n)

解法二:

基本思想:快慢双指针,通过使用具有不同速度的快、慢两个指针遍历链表,如果两指针相遇则有环,时间复杂度O(n)空间复杂度O(1)。

#include<iostream>
#include<algorithm>
#include<vector>
#include<unordered_set>
using namespace std;
struct ListNode {
	int val;
	ListNode* next;
	ListNode(int x) : val(x), next(NULL) {}
};
void Init_ListNode(ListNode* head, vector<int> vec)
{
	if (vec.size() == 0)
	{
		head = NULL;
		return;
	}
	ListNode* p;
	p = head;
	p->val = vec[0];
	for (int i = 1; i < vec.size(); i++)
	{
		ListNode* q = new ListNode(vec[i]);
		p->next = q;
		p = p->next;
	}
	p->next = head->next;
}
class Solution {
public:
	bool hasCycle(ListNode* head) {
		//基本思想:哈希表,时间复杂度O(n)空间复杂度O(n)
		unordered_set<ListNode*> dictNode;
		while (head != NULL)
		{
			if (dictNode.find(head) == dictNode.end())
				dictNode.insert(head);
			else
				return true;
			head = head->next;
		}
		return false;
	}
};
class Solution1 {
public:
	bool hasCycle(ListNode* head) {
		//基本思想:快慢双指针,通过使用具有不同速度的快、慢两个指针遍历链表,如果两指针相遇则有环
		//时间复杂度O(n)空间复杂度O(1)
		ListNode* slow, * fast;
		if (head == NULL || head->next == NULL)
			return false;
		slow = head;
		fast = head->next;
		while (fast != slow)
		{
			if (fast == NULL || fast->next == NULL)
				return false;
			slow = slow->next;
			fast = fast->next->next;
		}
		return true;
	}
};
int main()
{
	Solution solute;
	ListNode* head = new ListNode(0);
	vector<int> vec = { 1,2,3,4,5 };
	//初始化链表
	Init_ListNode(head, vec);
	cout << solute.hasCycle(head) << endl;
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值