91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中怎么實現一個LeetCode

發布時間:2021-07-27 17:51:48 來源:億速云 閱讀:118 作者:Leah 欄目:開發技術

這篇文章給大家介紹C++中怎么實現一個LeetCode,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

[LeetCode] 128.Longest Consecutive Sequence 求最長連續序列

Given an unsorted array of integers, find the length of the longest consecutive elements sequence.

Your algorithm should run in O(n) complexity.

Example:

Input: [100, 4, 200, 1, 3, 2]
Output: 4
Explanation: The longest consecutive elements sequence is

[1, 2, 3, 4]

. Therefore its length is 4.

這道題要求求最長連續序列,并給定了O(n)復雜度限制,我們的思路是,使用一個集合HashSet存入所有的數字,然后遍歷數組中的每個數字,如果其在集合中存在,那么將其移除,然后分別用兩個變量pre和next算出其前一個數跟后一個數,然后在集合中循環查找,如果pre在集合中,那么將pre移除集合,然后pre再自減1,直至pre不在集合之中,對next采用同樣的方法,那么next-pre-1就是當前數字的最長連續序列,更新res即可。這里再說下,為啥當檢測某數字在集合中存在當時候,都要移除數字。這是為了避免大量的重復計算,就拿題目中的例子來說吧,我們在遍歷到4的時候,會向下遍歷3,2,1,如果都不移除數字的話,遍歷到1的時候,還會遍歷2,3,4。同樣,遍歷到3的時候,向上遍歷4,向下遍歷2,1,等等等。如果數組中有大量的連續數字的話,那么就有大量的重復計算,十分的不高效,所以我們要從HashSet中移除數字,代碼如下:

C++ 解法一:

class Solution {
public:
    int longestConsecutive(vector<int>& nums) {
        int res = 0;
        unordered_set<int> s(nums.begin(), nums.end());
        for (int val : nums) {
            if (!s.count(val)) continue;
            s.erase(val);
            int pre = val - 1, next = val + 1;
            while (s.count(pre)) s.erase(pre--);
            while (s.count(next)) s.erase(next++);
            res = max(res, next - pre - 1);
        }
        return res;
    }
};

Java 解法一:

public class Solution {
    public int longestConsecutive(int[] nums) {
        int res = 0;
        Set<Integer> s = new HashSet<Integer>();
        for (int num : nums) s.add(num);
        for (int num : nums) {
            if (s.remove(num)) {
                int pre = num - 1, next = num + 1;
                while (s.remove(pre)) --pre;
                while (s.remove(next)) ++next;
                res = Math.max(res, next - pre - 1);
            }
        }
        return res;
    }
}

我們也可以采用哈希表來做,剛開始HashMap為空,然后遍歷所有數字,如果該數字不在HashMap中,那么我們分別看其左右兩個數字是否在HashMap中,如果在,則返回其哈希表中映射值,若不在,則返回0,雖然我們直接從HashMap中取不存在的映射值,也能取到0,但是一旦去取了,就會自動生成一個為0的映射,那么我們這里再for循環的開頭判斷如果存在映射就跳過的話,就會出錯。然后我們將left+right+1作為當前數字的映射,并更新res結果,同時更新num-left和num-right的映射值。

下面來解釋一下為啥要判斷如何存在映射的時候要跳過,這是因為一旦某個數字創建映射了,說明該數字已經被處理過了,那么其周圍的數字很可能也已經建立好了映射了,如果再遇到之前處理過的數字,再取相鄰數字的映射值累加的話,會出錯。舉個例子,比如數組 [1, 2, 0, 1],當0執行完以后,HashMap中的映射為 {1->2, 2->3, 0->3},可以看出此時0和2的映射值都已經為3了,那么如果最后一個1還按照原來的方法處理,隨后得到結果就是7,明顯不合題意。還有就是,之前說的,為了避免訪問不存在的映射值時,自動創建映射,我們使用m.count() 先來檢測一下,只有存在映射,我們才從中取值,否則就直接賦值為0,參見代碼如下:

C++ 解法二:

class Solution {
public:
    int longestConsecutive(vector<int>& nums) {
        int res = 0;
        unordered_map<int, int> m;
        for (int num : nums) {
            if (m.count(num)) continue;
            int left = m.count(num - 1) ? m[num - 1] : 0;
            int right = m.count(num + 1) ? m[num + 1] : 0;
            int sum = left + right + 1;
            m[num] = sum;
            res = max(res, sum);
            m[num - left] = sum;
            m[num + right] = sum;
        }
        return res;
    }
};

Java 解法二:

public class Solution {
    public int longestConsecutive(int[] nums) {
        int res = 0;
        Map<Integer, Integer> m = new HashMap<Integer, Integer>();
        for (int num : nums) {
            if (m.containsKey(num)) continue;
            int left = m.containsKey(num - 1) ? m.get(num - 1) : 0;
            int right = m.containsKey(num + 1) ? m.get(num + 1) : 0;
            int sum = left + right + 1;
            m.put(num, sum);
            res = Math.max(res, sum);
            m.put(num - left, sum);
            m.put(num + right, sum);
        }
        return res;
    }
}

關于C++中怎么實現一個LeetCode就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涡阳县| 襄樊市| 道孚县| 泾阳县| 九龙坡区| 北流市| 天水市| 白银市| 雷州市| 诏安县| 阿尔山市| 棋牌| 小金县| 金山区| 新乡市| 凌源市| 莱阳市| 连平县| 温泉县| 丰台区| 武川县| 定南县| 南宁市| 东安县| 江门市| 泸州市| 民权县| 高雄县| 西盟| 乌恰县| 丹凤县| 榆林市| 仁化县| 湘阴县| 金湖县| 舒兰市| 黔西县| 开平市| 正镶白旗| 类乌齐县| 古田县|