141:环形链表

This commit is contained in:
huangge1199 2021-06-07 10:34:59 +08:00
parent 0009870553
commit 260b803e04
2 changed files with 146 additions and 0 deletions

View File

@ -0,0 +1,95 @@
//给定一个链表判断链表中是否有环
//
// 如果链表中有某个节点可以通过连续跟踪 next 指针再次到达则链表中存在环 为了表示给定链表中的环我们使用整数 pos 来表示链表尾连接到链表中的
//位置索引从 0 开始 如果 pos -1则在该链表中没有环注意pos 不作为参数进行传递仅仅是为了标识链表的实际情况
//
// 如果链表中存在环则返回 true 否则返回 false
//
//
//
// 进阶
//
// 你能用 O(1)常量内存解决此问题吗
//
//
//
// 示例 1
//
//
//
// 输入head = [3,2,0,-4], pos = 1
//输出true
//解释链表中有一个环其尾部连接到第二个节点
//
//
// 示例 2
//
//
//
// 输入head = [1,2], pos = 0
//输出true
//解释链表中有一个环其尾部连接到第一个节点
//
//
// 示例 3
//
//
//
// 输入head = [1], pos = -1
//输出false
//解释链表中没有环
//
//
//
//
// 提示
//
//
// 链表中节点的数目范围是 [0, 104]
// -105 <= Node.val <= 105
// pos -1 或者链表中的一个 有效索引
//
// Related Topics 链表 双指针
// 👍 1085 👎 0
package leetcode.editor.cn;
import com.code.leet.entiy.ListNode;
import java.util.HashSet;
import java.util.Set;
//141:环形链表
public class LinkedListCycle{
public static void main(String[] args) {
//测试代码
Solution solution = new LinkedListCycle().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 boolean hasCycle(ListNode head) {
Set<ListNode> seen = new HashSet<>();
while (head != null) {
if (!seen.add(head)) {
return true;
}
head = head.next;
}
return false;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,51 @@
<p>给定一个链表,判断链表中是否有环。</p>
<p>如果链表中有某个节点,可以通过连续跟踪 <code>next</code> 指针再次到达,则链表中存在环。 为了表示给定链表中的环,我们使用整数 <code>pos</code> 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 <code>pos</code><code>-1</code>,则在该链表中没有环。<strong>注意:<code>pos</code> 不作为参数进行传递</strong>,仅仅是为了标识链表的实际情况。</p>
<p>如果链表中存在环,则返回 <code>true</code> 。 否则,返回 <code>false</code></p>
<p>&nbsp;</p>
<p><strong>进阶:</strong></p>
<p>你能用 <em>O(1)</em>(即,常量)内存解决此问题吗?</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist.png" style="height: 97px; width: 300px;"></p>
<pre><strong>输入:</strong>head = [3,2,0,-4], pos = 1
<strong>输出:</strong>true
<strong>解释:</strong>链表中有一个环,其尾部连接到第二个节点。
</pre>
<p><strong>示例&nbsp;2</strong></p>
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png" style="height: 74px; width: 141px;"></p>
<pre><strong>输入:</strong>head = [1,2], pos = 0
<strong>输出:</strong>true
<strong>解释:</strong>链表中有一个环,其尾部连接到第一个节点。
</pre>
<p><strong>示例 3</strong></p>
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test3.png" style="height: 45px; width: 45px;"></p>
<pre><strong>输入:</strong>head = [1], pos = -1
<strong>输出:</strong>false
<strong>解释:</strong>链表中没有环。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li>链表中节点的数目范围是 <code>[0, 10<sup>4</sup>]</code></li>
<li><code>-10<sup>5</sup> &lt;= Node.val &lt;= 10<sup>5</sup></code></li>
<li><code>pos</code><code>-1</code> 或者链表中的一个 <strong>有效索引</strong></li>
</ul>
<div><div>Related Topics</div><div><li>链表</li><li>双指针</li></div></div>\n<div><li>👍 1085</li><li>👎 0</li></div>