-
Notifications
You must be signed in to change notification settings - Fork 0
/
First_Missing_Positive.cpp
64 lines (52 loc) · 1.41 KB
/
First_Missing_Positive.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<bits/stdc++.h>
using namespace std;
// https://practice.geeksforgeeks.org/problems/smallest-positive-missing-number-1587115621/1
// https://leetcode.com/problems/first-missing-positive/description/
// First Missing Positive
// Given an unsorted integer array,
// return the smallest missing positive integer.
class Solution
{
public:
//Function to find the smallest positive number missing from the array.
int missingNumber(int a[], int n)
{
for(int i=0;i<n;i++){
while(a[i]>0 && a[i]<=n && a[i]!=a[a[i]-1])
swap(a[i],a[a[i]-1]);
}
for(int i=0;i<n;i++){
if(a[i]!=(i+1))
return i+1;
}
return n+1;
// vector<bool>v(n,false);
// for(int i=0;i<n;i++){
// if(a[i]>0 && a[i]<=n)
// v[a[i]-1]=true;
// }
// for(int i=0;i<n;i++){
// if(v[i]==false)
// return i+1;
// }
// return n+1;
}
};
int missingNumber(int arr[], int n);
int main() {
//taking testcases
int t;
cin>>t;
while(t--){
//input number n
int n;
cin>>n;
int arr[n];
//adding elements to the array
for(int i=0; i<n; i++)cin>>arr[i];
Solution ob;
//calling missingNumber()
cout<<ob.missingNumber(arr, n)<<endl;
}
return 0;
}