摘要:集合法復雜度時間空間思路將所有數都加入集合中,然后再遍歷這些數,因為我們能的判斷某個數是否在集合中,所以我們可以一個個向上或者向下檢查。時間復雜度仍是,因為我們不會檢查不存在于數組的數,而存在于數組的數也只會檢查一次。
Longest Consecutive Sequence
排序法 復雜度Given an unsorted array of integers, find the length of the longest consecutive elements sequence.
For example, Given [100, 4, 200, 1, 3, 2], The longest consecutive elements sequence is [1, 2, 3, 4]. Return its length: 4.
Your algorithm should run in O(n) complexity.
時間 O(NlogN) 空間 O(1)
思路將數組排序后,從前向后遍歷,找到最長的連續部分,該方法隨不符合題意,但是不用空間。
集合法 復雜度時間 O(N) 空間 O(N)
思路將所有數都加入集合中,然后再遍歷這些數,因為我們能O(1)的判斷某個數是否在集合中,所以我們可以一個個向上或者向下檢查。為了避免之后重復檢查,我們每查到一個數,都要將其從集合中移除。這樣每遇到一個數,都檢查它的上下邊界,就能找出最長的連續數列。時間復雜度仍是O(N),因為我們不會檢查不存在于數組的數,而存在于數組的數也只會檢查一次。
代碼public class Solution { public int longestConsecutive(int[] nums) { int maxlen = 0; Setset = new HashSet (); // 先將所有數字加入數組中 for(int n : nums){ set.add(n); } // 對于每個數我們都在集合中一一檢查它的上下邊界 for(int n : nums){ // 暫存n,供檢查下邊界時使用 int curr = n, len = 0; // 一個一個檢查上邊界 while(set.contains(curr)){ curr++; len++; set.remove(curr); } // 一個一個檢查下邊界 curr = n - 1; while(set.contains(curr)){ curr--; len++; set.remove(curr); } maxlen = Math.max(len, maxlen); } return maxlen; } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/64610.html
摘要:遞歸法復雜度時間空間思路因為要找最長的連續路徑,我們在遍歷樹的時候需要兩個信息,一是目前連起來的路徑有多長,二是目前路徑的上一個節點的值。代碼判斷當前是否連續返回當前長度,左子樹長度,和右子樹長度中較大的那個 Binary Tree Longest Consecutive Sequence Given a binary tree, find the length of the lon...
摘要:描述例子要求分析從未排序的數組中尋找最長的連續的數字,必然要循環一遍所有的數字,因為連續,所以以出來的數字為基準,向左右擴散,直到沒有連續的,利用了和的特性。 描述: Given an unsorted array of integers, find the length of the longest consecutive elements sequence. 例子: Given ...
摘要:先排序,然后用數組記錄每一位上連續序列的長度,每次循環更新最大值存為。 Problem Given an unsorted array of integers, find the length of the longest consecutive elements sequence. Clarification Your algorithm should run in O(n) com...
Problem Given a binary tree, you need to find the length of Longest Consecutive Path in Binary Tree. Especially, this path can be either increasing or decreasing. For example, [1,2,3,4] and [4,3,2,1] ...
摘要:在線網站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個題。這是項目地址歡迎一起交流學習。 這篇文章記錄我練習的 LeetCode 題目,語言 JavaScript。 在線網站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...
閱讀 3699·2021-11-11 16:55
閱讀 1646·2021-10-08 10:04
閱讀 3581·2021-09-27 13:36
閱讀 2761·2019-08-30 15:53
閱讀 1855·2019-08-30 11:17
閱讀 1259·2019-08-29 16:55
閱讀 2098·2019-08-29 13:57
閱讀 2513·2019-08-29 13:13