forked from anshuman8800/Interivew-Questions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextPermutation.cpp
More file actions
25 lines (23 loc) · 832 Bytes
/
nextPermutation.cpp
File metadata and controls
25 lines (23 loc) · 832 Bytes
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
class Solution {
public:
void nextPermutation(vector<int> &num)
{
if (num.empty()) return;
// in reverse order, find the first number which is in increasing trend (we call it violated number here)
int i;
for (i = num.size()-2; i >= 0; --i)
{
if (num[i] < num[i+1])
break;
}
// reverse all the numbers after violated number
reverse(begin(num)+i+1, end(num));
// if violated number not found, because we have reversed the whole array, then we are done!
if (i == -1)
return;
// else binary search find the first number larger than the violated number
auto itr = upper_bound(begin(num)+i+1, end(num), num[i]);
// swap them, done!
swap(num[i], *itr);
}
};