-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path189_RotateArray.cpp
80 lines (74 loc) · 1.76 KB
/
189_RotateArray.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <cstdio>
#include <cassert>
#include <list>
#include <stack>
#include <string>
#include <vector>
#include <numeric>
#include <iostream>
#include <iterator>
#include <algorithm>
#include <unordered_set>
#include <unordered_map>
using namespace std;
class Solution {
public:
void rotate(vector<int> &nums, int k) {
int start = 0, len = (int)nums.size();
if (len == 0) return;
k %= len;
while (k < len && k > 0)
{
if (k * 2 > len)
{
int n = len - k;
swap(
nums.data() + start,
nums.data() + start + n, n);
start += n;
k -= n;
len -= n;
}
else
{
swap(
nums.data() + start,
nums.data() + start + len - k, k);
start += k;
len -= k;
}
}
}
void swap(int *nums0, int *nums1, int len)
{
for (int i = 0; i < len; ++i)
std::swap(nums0[i], nums1[i]);
}
};
int main()
{
for (auto &test : vector<pair<int, int>>
{
{0, 0},
{1, 1},
{2, 1},
{2, 3},
{3, 1},
{3, 2},
{4, 1},
{4, 2},
{4, 3},
{5, 1},
{5, 2},
{5, 3},
{5, 4},
{5, 5},
})
{
vector<int> nums(test.first);
iota(nums.begin(), nums.end(), 0);
Solution().rotate(nums, test.second);
copy(nums.begin(), nums.end(), ostream_iterator<int>(cout, ","));
cout << "\n";
}
}