LeetCode - 41. First Missing Positive

简介: 41. First Missing Positive  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一组整数,找出第一个空缺的正整数.

41. First Missing Positive 

Problem's Link

 ----------------------------------------------------------------------------

Mean: 

给你一组整数,找出第一个空缺的正整数.

要求:时间O(n),空间O(n).

analyse:

这题时间O(n)想了半天没想到,用O(n*logn)过的.

然后看了discuss,想法非常巧妙,自愧不如.

Time complexity: O(N)

 

view code

/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-03-05-18.56
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long( LL);
typedef unsigned long long( ULL);
const double eps( 1e-8);

class Solution
{
public :
    vector < vector < int >> combinationSum2( vector < int >& candidates , int target)
    {
        sort( candidates . begin (), candidates . end());
        vector < vector < int >> res;
        vector < int > combination;
        combinationSum( candidates , res , combination , target , 0);
        return res;
    }
private :
    void combinationSum( vector < int >& candidates , vector < vector < int >> & res , vector < int >& combination , int target , int begin)
    {
        if( ! target)
        {
            res . push_back( combination);
            return;
        }
        for( int i = begin; target >= candidates [ i ] && i < candidates . size() ; ++ i)
        {
            if( i == begin || candidates [ i ] != candidates [ i - 1 ])
            {
                combination . push_back( candidates [ i ]);
                combinationSum( candidates , res , combination , target - candidates [ i ], i + 1);
                combination . pop_back();
            }
        }
        return;
    }
};


int main()
{
    freopen( "H: \\ Code_Fantasy \\ in.txt" , "r" , stdin);
    int n , target;
    while( cin >>n >> target)
    {
        cout <<n << " " << target << endl;
        vector < int > ve;
        for( int i = 0; i <n; ++ i)
        {
            int tmp;
            cin >> tmp;
            ve . push_back( tmp);
        }
        Solution solution;
        vector < vector < int >> ans = solution . combinationSum2( ve , target);
        for( auto p1: ans)
        {
            for( auto p2: p1)
            {
                cout << p2 << " ";
            }
            cout << endl;
        }
    }
    return 0;
}
/*

*/

O(n)时间,O(1)空间的代码:

class Solution {
public :
    int firstMissingPositive( vector < int >& nums) {
        int n = nums . size();
        for ( int i = 0; i < n; i ++)
            while ( nums [ i ] > 0 && nums [ i ] <= n && nums [ nums [ i ] - 1 ] != nums [ i ])
                swap( nums [ i ], nums [ nums [ i ] - 1 ]);
        for ( int i = 0; i < n; i ++)
            if ( nums [ i ] != i + 1)
                return i + 1;
        return n + 1;
    }
};
目录
相关文章
|
索引
LeetCode 387. First Unique Character in a String
给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。
110 0
LeetCode 387. First Unique Character in a String
|
测试技术 API
LeetCode 278. First Bad Version
假设你有 n 个版本 [1, 2, ..., n],你想找出导致之后所有版本出错的第一个错误的版本。 你可以通过调用 bool isBadVersion(version) 接口来判断版本号 version 是否在单元测试中出错。实现一个函数来查找第一个错误的版本。你应该尽量减少对调用 API 的次数。
62 0
LeetCode 278. First Bad Version
|
测试技术 API
LeetCode 278. 第一个错误的版本 First Bad Version
LeetCode 278. 第一个错误的版本 First Bad Version
|
数据库
LeetCode(数据库)- First and Last Call On the Same Day
LeetCode(数据库)- First and Last Call On the Same Day
117 0
LeetCode之First Unique Character in a String
LeetCode之First Unique Character in a String
120 0
|
Java 索引 Python
LeetCode 387: 字符串中的第一个唯一字符 First Unique Character in a String
题目: 给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。 Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1. 案例: s = "leetcode" 返回 0. s = "loveleetcode", 返回 2. 注意事项:您可以假定该字符串只包含小写字母。
780 0
|
算法
LeetCode 41 First Missing Positive(丢失的第一个正数)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/52435582 翻译 给定一个未排序的整型数组,找出第一个丢失的正数。
1078 0
|
API 移动开发
LeetCode 278 First Bad Version(第一个坏版本)(二分法)(*)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50611643 翻译 你是一个产品经理,目前正在带领团队去开发一个新产品。
888 0