-
Notifications
You must be signed in to change notification settings - Fork 1
/
1089+Duplicate Zeros.cpp
80 lines (68 loc) · 1.89 KB
/
1089+Duplicate Zeros.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
class Solution {
public:
void duplicateZeros(vector<int>& arr) {
int n = arr.size();
int top = 0, i = -1;
/*找到有效数字的结束位置i*/
while (top < n) {
i++;
if (arr[i] != 0) {
top++;
} else {
top += 2;
}
}
/*倒着来移动值*/
int j = n - 1;
/*若 top == n + 1 说明修改后的数组的末尾的值正好是 0
这个 0 复写后的 0 应该位于 arr[n] 的位置
但这超出了范围 因此此种情况需要特判*/
if (top == n + 1) {
arr[j] = 0;
j--;
i--;
}
while (j >= 0) {
arr[j] = arr[i];
j--;
if (arr[i] == 0) {
arr[j] = arr[i];
j--;
}
i--;
}
return;
}
};
class Solution {
public:
void duplicateZeros(vector<int>& arr) {
int n = arr.size();
int fast = 0, slow = 0;
/*找到有效数字的结束位置i*/
while (fast < n) {
fast += arr[slow] == 0 ? 2 : 1;
++slow;
}
/*倒着来移动值*/
int i = n - 1, j = slow - 1;
/*若 top == n + 1 说明修改后的数组的末尾的值正好是 0
这个 0 复写后的 0 应该位于 arr[n] 的位置
但这超出了范围 因此此种情况需要特判*/
if (fast == n + 1) {
arr[i] = 0;
i--;
j--;
}
while (i >= 0) {
arr[i] = arr[j];
i--;
if (arr[j] == 0) { //是0的话再把前一位也赋值了
arr[i] = arr[j];
i--;
}
j--;
}
return;
}
};