面试题 02.08:环路检测

This commit is contained in:
huangge1199@hotmail.com 2021-03-19 23:40:05 +08:00
parent 9ae0cf1ec6
commit 4c0c4a95ab

View File

@ -0,0 +1,91 @@
//给定一个链表如果它是有环链表实现一个算法返回环路的开头节点
//
// 如果链表中有某个节点可以通过连续跟踪 next 指针再次到达则链表中存在环 为了表示给定链表中的环我们使用整数 pos 来表示链表尾连接到链表中的
//位置索引从 0 开始 如果 pos -1则在该链表中没有环注意pos 不作为参数进行传递仅仅是为了标识链表的实际情况
//
//
//
// 示例 1
//
//
//
//
//输入head = [3,2,0,-4], pos = 1
//输出tail connects to node index 1
//解释链表中有一个环其尾部连接到第二个节点
//
//
// 示例 2
//
//
//
//
//输入head = [1,2], pos = 0
//输出tail connects to node index 0
//解释链表中有一个环其尾部连接到第一个节点
//
//
// 示例 3
//
//
//
//
//输入head = [1], pos = -1
//输出no cycle
//解释链表中没有环
//
//
//
// 进阶
//
//
// 你是否可以不用额外空间解决此题
//
//
//
// Related Topics 链表
// 👍 64 👎 0
package leetcode.editor.cn;
import com.code.leet.entiy.ListNode;
import java.util.HashSet;
import java.util.Set;
//面试题 02.08:环路检测
public class LinkedListCycleLcci {
public static void main(String[] args) {
//测试代码
Solution solution = new LinkedListCycleLcci().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode detectCycle(ListNode head) {
Set<ListNode> listNodeSet = new HashSet<>();
while (head != null) {
if (!listNodeSet.add(head)) {
break;
} else {
head = head.next;
}
}
return head;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}