`//用散列表,首先将数字都映射到散列表上,然后,对于每个数字,找到后就删除,然后向两边`
`//同时搜,只要搜到了就删除,最后求出长度。哈希表搜是O(1),因为每个数字只会添加一次,`
`//删除一次,所以复杂度是O(n)`
class Solution {
public:
int longestConsecutive(vector<int> &num) {
unordered_set<int>st(num.begin(),num.end());
int ans=0;
for(auto v:num)
{
if(st.find(v)==st.end())continue;
int l=v,r=v;
while(st.find(r+1)!=st.end())st.erase(++r);
while(st.find(l-1)!=st.end())st.erase(--l);
ans=max(ans,r-l+1);
}
return ans;
}
};
longest-consecutive-sequence
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Description Given an unsorted array of integers, find the...
- 题目Given an unsorted array of integers, find the length of...
- Find Longest Continuous Increasing Subarray Algorithm Cre...
- Link to the problem Description Given an unsorted array o...
- Given an unsorted array of integers, find the length of t...