-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNextPermutation.cpp
51 lines (42 loc) · 912 Bytes
/
NextPermutation.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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
vector<int> arr = {1, 2, 3};
int n = arr.size();
int piv = -1;
for (int i = n - 2; i >= 0; i--) // pivot finding logic
{
if (arr[i] < arr[i + 1])
{
piv = i;
break;
}
}
if (piv == -1) // if pivot is still -1 means array is in decreasing order
{
reverse(arr.begin(), arr.end());
}
for (int i = n - 1; i > piv; i--) // to find next larger value from the end
{
if (arr[i] > arr[piv])
{
swap(arr[i], arr[piv]);
break;
}
}
int i = piv + 1, j = n - 1; // to reverse value after pivot
while (i <= j)
{
swap(arr[i], arr[j]);
i++;
j--;
}
for (int i = 0; i < n; i++)
{
cout << arr[i] << " ";
}
return 0;
}