我用java刷 leetcode 141. 环形链表
Posted 深林无鹿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我用java刷 leetcode 141. 环形链表相关的知识,希望对你有一定的参考价值。
这里有leetcode题集分类整理!!!
题目难度:简单
题目描述:
给定一个链表,判断链表中是否有环。
如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。注意:pos 不作为参数进行传递,仅仅是为了标识链表的实际情况。
如果链表中存在环,则返回 true 。 否则,返回 false 。
进阶:
你能用 O(1)(即,常量)内存解决此问题吗?
myAC:(快慢指针)
/**
* 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 first = head;
ListNode second = head;
if (head == null || head.next == null) return false;
while (second != null && second.next != null) {
first = first.next;
second = second.next.next;
if (first == second) {
return true;
}
}
return false;
}
}
myAC(哈希):
/**
* 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) {
HashSet<ListNode> set = new HashSet<>();
while (head != null) {
if (!set.add(head)) {
return true;
}
head = head.next;
}
return false;
}
}
官解:(哈希表)
public class Solution {
public boolean hasCycle(ListNode head) {
Set<ListNode> seen = new HashSet<ListNode>();
while (head != null) {
if (!seen.add(head)) {
return true;
}
head = head.next;
}
return false;
}
}
作者:LeetCode-Solution
链接:https://leetcode-cn.com/problems/linked-list-cycle/solution/huan-xing-lian-biao-by-leetcode-solution/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
巧妙解法:
思路:
将所有遍历过的节点全部指向head;遍历时如果下一个节点为head,必有环;如果为null,则无环。
public class Solution {
public boolean hasCycle(ListNode head) {
ListNode root = head;
while(head!=null){
if(head.next==root) return true;//如果节点的下一节点为初始节点则有环
ListNode prev = head;
head = head.next;//否则继续遍历下一个节点
prev.next = root;//上一个节点的下一节点为初始节点
}
return false;//走到了尽头,没有环
}
}
以上是关于我用java刷 leetcode 141. 环形链表的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 141题 环形链表(Linked List Cycle) Java语言求解
Leetcode141. 环形链表(JAVA经典快慢双指针)