前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Array - 128. Longest Consecutive Sequence

Array - 128. Longest Consecutive Sequence

作者头像
ppxai
发布2020-09-23 17:11:09
2650
发布2020-09-23 17:11:09
举报
文章被收录于专栏:皮皮星球皮皮星球

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),可以使用set或者map来做,就是online和offline,offline非常简单直接,就是利用set的O(1)操作来解。

代码:

java:

代码语言:javascript
复制
class Solution {

    // online 
    public int longestConsecutive(int[] nums) {
        if( nums == null ||nums.length == 0) return 0;
        
        int res = 0;
        Map<Integer, Integer> map = new HashMap<Integer, Integer>();
        for (int n : nums) {
            if(!map.containsKey(n)) {
                int left = map.containsKey(n-1) ? map.get(n-1) : 0;
                int right = map.containsKey(n+1) ? map.get(n+1) : 0;
                
                int sum = left + right + 1;
                
                res = Math.max(res, sum);
                map.put(n, sum);
                
                map.put(n - left, sum);
                map.put(n + right, sum);
            }
        }
        
        return res;
    }
    
    // offline
   /* public int longestConsecutive(int[] nums) {
        if (nums == null || nums.length == 0) return 0;
        
        Set set = new HashSet();
        for (int num : nums) set.add(num);
        
        int ans =0;
        for (int n : nums){
            if (!set.contains(n-1)) {
                int len = 0;
                while (set.contains(n++)) ++len;
                ans = Math.max(ans, len);
            }
        }
        
        return ans;
    }*/
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019年06月17日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档