博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode OJ - Longest Consecutive Sequence
阅读量:5163 次
发布时间:2019-06-13

本文共 1184 字,大约阅读时间需要 3 分钟。

题目:

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.

解题思路:

用unordered_map来记录数字是否在数组中。 然后枚举每个数,看其相邻的数在不在unorded_map中,相邻的数在数组里的话,每个数之多访问一次;相邻的数不在数组里的话,枚举会中断。所以设哈希复杂度为O(1)的话,这个方法是严格的O(n)。

代码:

class Solution {public:    int longestConsecutive(vector
&num) { unordered_map
dict; //init for (int i = 0; i < num.size(); i++) { dict[num[i]] = false; } int ans = 0; for (int i = 0; i < num.size(); i++) { if (dict[num[i]] == false) { int cnt = 0; //枚举相邻的数,看是否在字典中 for (int j = num[i]; dict.count(j); j++, cnt++) { dict[j] = true; } for (int j = num[i] - 1; dict.count(j); j--, cnt++) { dict[j] = true; } ans = max(ans, cnt); } } return ans; }};

 

转载于:https://www.cnblogs.com/dongguangqing/p/3727349.html

你可能感兴趣的文章
转负二进制(个人模版)
查看>>
LintCode-Backpack
查看>>
查询数据库锁
查看>>
面试时被问到的问题
查看>>
注解小结
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
CSS属性值currentColor
查看>>
Real-Time Rendering 笔记
查看>>
多路复用
查看>>
处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“Manag
查看>>
利用SignalR来同步更新Winfrom
查看>>
反射机制
查看>>
CocoaPod
查看>>
BZOJ 1251: 序列终结者 [splay]
查看>>
5G边缘网络虚拟化的利器:vCPE和SD-WAN
查看>>
MATLAB基础入门笔记
查看>>
【UVA】434-Matty&#39;s Blocks
查看>>
Android开发技术周报 Issue#80
查看>>
hadoop2.2.0+hive-0.10.0完全分布式安装方法
查看>>