-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathSmallest Positive Missing Number.cpp
60 lines (47 loc) · 1.09 KB
/
Smallest Positive Missing Number.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
#include<bits/stdc++.h>
using namespace std;
class Solution
{
public:
//Function to find the smallest positive number missing from the array.
int missingNumber(int arr[], int n)
{
sort(arr, arr+n);
for(int i = 0;i<n;i++)
{
int p = arr[i];
if(p>0 && p<n)
{
if(arr[p-1] != arr[i])
{
swap(arr[i], arr[p-1]) ;
i--;
}
}
}
int i = 0;
for(int i = 0;i<n;i++)
{
if(arr[i] != i+1)
return i+1;
}
return i+1;
}
};
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;
}