给定一个链表,判断链表中是否有环。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。
示例 1:
输入:head = [3,2,0,-4], pos = 1
输出:true
解释:链表中有一个环,其尾部连接到第二个节点。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/linked-list-cycle
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
知识点:Set继承于Collection接口,是一个不允许出现重复元素,并且无序的集合,主要有HashSet和TreeSet两大实现类。
方法一:新建一个hash表,将每个节点放入hash表中,如果出现重复,则证明有环
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public boolean hasCycle(ListNode head) {
//Set继承于Collection接口,是一个不允许出现重复元素,并且无序的集合,主要有HashSet和TreeSet两大实现类。
Set<ListNode> nodesSeen = new HashSet<>();
while(head!=null)
{
if(nodesSeen.contains(head))
{
return true;
}
else
{
nodesSeen.add(head);
}
head=head.next;
}
return false;
}
}
方法二:双指针
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public boolean hasCycle(ListNode head) {
ListNode slow=head;
ListNode quick=head;
while(slow!=null&&quick!=null&&quick.next!=null)
{
slow=slow.next;
quick=quick.next.next;
if(quick==slow)
{
return true;
}
}
return false;
}
}
因篇幅问题不能全部显示,请点此查看更多更全内容