地址 https://leetcode-cn.com/problems/linked-list-cycle-ii/
给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。 为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。
如果 pos 是 -1,则在该链表中没有环。 说明:不允许修改给定的链表。
算法1
常规做法 遍历链表 哈希记录
每次查找遍历到的链表是否已经记录
C++ 代码
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode *detectCycle(ListNode *head) { unordered_set<ListNode*> s; ListNode * p = head; while(p != NULL){ if(s.count(p) != 0) return p; s.insert(p); p = p->next; } return p; } };