码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode "First Missing Positive"

时间:2014-07-28 15:16:43      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   html   

Similar with "Longest Consecutive Sequence". Another usage to hashset.

Take care of corner cases!

class Solution {
public:
    int firstMissingPositive(int A[], int n) {
        if (n == 0) return 1;
        unordered_set<int> set;
        int minPos = std::numeric_limits<int>::max();
        for (int i = 0; i < n; i ++)
        {
            int n = A[i];
            if (n >= 0)
            {
                set.insert(n);
                minPos = std::min(minPos, n);
            }
        }
        if (minPos > 1) return 1;

        int p = std::numeric_limits<int>::max();
        if (set.size() == 0) return 1;

        for (int i = 0; i < n; i++)
        {
            int n = A[i];
            if (n < 0) continue;
            int n1 = n - 1;
            int n2 = n + 1;
            if (n1 > 0)
            {
                if (set.find(n1) == set.end())
                    p = std::min(p, n1);
            }
            if (n2 > 0)
            {
                if (set.find(n2) == set.end())
                    p = std::min(p, n2);
            }
        }
        return p;
    }
};

LeetCode "First Missing Positive",布布扣,bubuko.com

LeetCode "First Missing Positive"

标签:style   blog   http   color   os   io   for   html   

原文地址:http://www.cnblogs.com/tonix/p/3872882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!