zoukankan      html  css  js  c++  java
  • 环形链表

    给定一个链表,判断链表中是否有环。

    为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。

    输入:head = [3,2,0,-4], pos = 1
    输出:true
    解释:链表中有一个环,其尾部连接到第二个节点。

     思路,利用哈希表,或者集合去重的特性。

    /**
     * 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_set<ListNode*> haset;
            ListNode* p = head;
            while(p){
                if(haset.count(p) > 0) return true;
                haset.insert(p);
                p = p->next;
            }
            return false;        
        }
    };*/
    class Solution {
    public:    
        bool hasCycle(ListNode *head){
            set<ListNode*> nodeSet; //集合的性质,去重
            ListNode*p = head;
            int count = 0;
            while(p){
                nodeSet.insert(p);
                if(count == nodeSet.size()) {
                    return  true;
                }
                count = nodeSet.size();  
                p = p->next;
            }
            return false;
        }
    };
    The Safest Way to Get what you Want is to Try and Deserve What you Want.
  • 相关阅读:
    bashrc的加载
    无奈卸载Clover 转投TotalCommand
    Hash Table Benchmarks
    linux下编译lua
    可变参数的传递问题
    vector 之 find 重载
    Shell统计报表表格生成
    Shell字符串使用十进制转换
    No module named BeautifulSoup
    Multi Thread.
  • 原文地址:https://www.cnblogs.com/Shinered/p/11405080.html
Copyright © 2011-2022 走看看