forked from yubinbai/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
47 lines (44 loc) · 853 Bytes
/
main.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
#include <cstdlib>
#include <iostream>
#include <map>
#include <queue>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
class Solution {
private:
void swap(vector<int> &nums, int i, int j) {
int t = nums[i];
nums[i] = nums[j];
nums[j] = t;
}
public:
void wiggleSort(vector<int> &nums) {
if (nums.size() <= 1) {
return;
}
for (int i = 0; i < nums.size() - 1; i++) {
if (i % 2 == 0) {
if (nums[i] > nums[i + 1]) {
swap(nums, i, i + 1);
}
} else {
if (nums[i] < nums[i + 1]) {
swap(nums, i, i + 1);
}
}
}
}
};
int main() {
Solution sol;
vector<int> arr = {3, 5, 2, 1, 6, 4};
sol.wiggleSort(arr);
for (int a : arr) {
cout << a << ' ';
}
return 0;
}