码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 141——环形链表

时间:2018-12-19 15:45:30      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:散列表   图片   nod   ext   char   count   bool   技术   als   

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——环形链表

标签:散列表   图片   nod   ext   char   count   bool   技术   als   

原文地址:https://www.cnblogs.com/seniusen/p/10142918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!