题解 | #判断链表中是否有环(哈希表)#

判断链表中是否有环

https://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
#include <cstddef>
class Solution {
  public:
    bool hasCycle(ListNode* head) {
        ListNode* plist = head;
        map<ListNode*, int> m;
        int i = 0;
        

        while (plist != nullptr) {
            auto it = m.find(plist);
            m.insert(pair<ListNode*, int>(plist, i));
            if(it != m.end()){
                return true;
            }
            plist = plist->next;
        }
        return false;
    }
};

哈希表的查找

全部评论

相关推荐

牛客963010790号:一般是hr拿着老板账号在招人不是真是老板招
点赞 评论 收藏
分享
03-05 12:52
吉林大学 Java
挣K存W养DOG:他的价值在于把他家里积攒的财富回馈给社会
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务