-
[LeetCode] Linked List Cycle (C++)알고리즘 문제풀이/LeetCode 2021. 3. 9. 00:44
leetcode.com/problems/linked-list-cycle/
unordred_map 자료구조를 이용하여 ListNode*의 빈도가 2번 이상 나오는 경우를 찾는 방법과 투 포인터를 이용해 fast 포인터와 slow 포인터가 만나는지를 확인하는 방법이 있습니다.
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: bool hasCycle(ListNode *head) { unordered_map<ListNode*, int> um; while(head) { um[head]++; head = head->next; if(um[head] > 1) return true; } return false; } };
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: bool hasCycle(ListNode *head) { ListNode* fast = head; ListNode* slow = head; while(fast && slow && fast->next) { fast = fast->next->next; slow = slow->next; if(fast == slow) return true; } return false; } };
'알고리즘 문제풀이 > LeetCode' 카테고리의 다른 글
[LeetCode] Intersection of Two Linked Lists (C++) (0) 2021.03.11 [LeetCode] Min Stack (C++) (0) 2021.03.10 [LeetCode] Maximum Depth of Binary Tree (C++) (0) 2021.03.06 [LeetCode] Merge Two Sorted Lists (C++) (0) 2021.03.04 [LeetCode/easy] Single Number (C++) (0) 2021.02.08