Ai
1 Star 0 Fork 0

wu-xjg/LeetCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Code141.java 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
wu-xjg 提交于 2025-02-18 22:18 +08:00 . day02
package Code;
import java.util.List;
public class Code141 {
// 定义链表节点类
static class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
next = null;
}
}
static boolean hasCycle(ListNode head) {
if(head == null|| head.next == null){
return false;
}
ListNode slow = head;
ListNode fast = head.next;
while(slow != fast){
if(fast == null || fast.next == null){
return false;
}
slow = slow.next;
fast= fast.next.next;
}
return true;
}
public static void main(String[] args) {
ListNode head = new ListNode(1);
ListNode node2 = new ListNode(2);
ListNode node3 = new ListNode(3);
ListNode node4 = new ListNode(4);
head.next = node2;
node2.next = node3;
node3.next = node4;
node4.next = node2; // 创建环
boolean result = hasCycle(head);
System.out.println("链表中是否有环: " + result);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wu-xjg/leet-code.git
git@gitee.com:wu-xjg/leet-code.git
wu-xjg
leet-code
LeetCode
master

搜索帮助