LeetCode 141——环形链表

Posted seniusen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 141——环形链表相关的知识,希望对你有一定的参考价值。

1. 题目

技术分享图片

2. 解答

2.1 方法 1

定义快慢两个指针,慢指针每次前进一步,快指针每次前进两步,若链表有环,则快慢指针一定会相遇。

/**
 * 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 *slow = head;
        ListNode *fast = head;
        
        while (fast && fast->next)
        {
            slow = slow->next;
            fast = fast->next->next;
            if (slow == fast) return true;
        }
         return false;
    }
};
2.2 方法 2

用 unordered_map 充当散列表的功能,每次将链表的节点指针作为键值存入 map,如果检测到当前节点指针已经存在于 map 中则说明链表有环。

class Solution {
public:
    bool hasCycle(ListNode *head) {
        
        unordered_map<ListNode *, char> nodemap; // 散列表功能
        ListNode *temp = head;
        
        while (temp)
        {
            if (nodemap.count(temp) == 1) return true; // 当前节点已存在于 map 中,则说明有环
            nodemap[temp] = ‘0‘;
            temp = temp->next;
        }
        return false;
    }
};

获取更多精彩,请关注「seniusen」!
技术分享图片


以上是关于LeetCode 141——环形链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 141. 环形链表

LeetCode 141 环形链表

LeetCode.链表.141+142环形链表,附详细证明过程+多图分析

leetcode 141. 环形链表

leetcode141-环形链表

每天一道leetcode141-环形链表