-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremoveElement.cpp
34 lines (33 loc) · 923 Bytes
/
removeElement.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
#include <vector>
class Solution {
public:
int removeElement(vector<int>& nums, int val) {
if (nums.empty()){
return 0;
} else if (nums.size() == 1){
if (nums[0] != val) {
return 1;
} else {
return 0;
}
}
int actualLength = nums.size() - 1;
while (actualLength >= 0 && nums[actualLength] == val){
actualLength--;
}
if (actualLength >= 0 ){
for (int i = 0; i < actualLength; i++){
if (nums[i] == val) {
nums[i] = nums[actualLength];
nums[actualLength] = val;
while (nums[actualLength] == val){
actualLength--;
}
}
}
return actualLength + 1;
} else {
return 0;
}
}
};