首页 > 代码库 > Longest Consecutive Sequence hashset
Longest Consecutive Sequence hashset
public class Solution { public int longestConsecutive(int[] num) { HashSet<Integer> hash=new HashSet<Integer>(); int max=1; for(int n:num) { hash.add(n); } int j=0; while(!hash.isEmpty()&&j<num.length) { // if(!hash.contains(num[j])) continue; int count=1; int k=num[j]+1; while(hash.contains(k)) { hash.remove(k); k=k+1; count++; } k=num[j]-1; while(hash.contains(k)) { hash.remove(k); k=k-1; count++; } hash.remove(num[j]); if(count>max) max=count; j++; } return max; }}
http://www.programcreek.com/2013/01/leetcode-longest-consecutive-sequence-java/
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。