0142. 环形链表 II #126
Replies: 1 comment
-
用哈希表理解起来简单粗暴一点。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
0142. 环形链表 II
标签:哈希表、链表、双指针; 难度:中等; 题目链接 0142. 环形链表 II - 力扣 (https://leetcode.cn/problems/linked-list-cycle-ii/); 题目大意 描述:给定一个链表的头节点 head。 要求:判断链表中是否有环,如果有环则返回入环的第一个节点,无环则返回 None。 说明: 链表中节点的数...
https://algo.itcharge.cn/Solutions/0100-0199/linked-list-cycle-ii/
Beta Was this translation helpful? Give feedback.
All reactions