LeetCode

Remove Element

2013.12.7 04:33

Given an array and a value, remove all instances of that value in place and return the new length.

The order of elements can be changed. It doesn't matter what you leave beyond the new length.

Solution1:

  My first solution is scan the array from both ends, if a target value is found on the left side, then get a non-target value from the right side to fill this position. When left and right meets somewhere in the middle, the scan is done.

  Time complexity is O(n),  space complexity is O(1).

Accepted code:

 1 class Solution {
 2 public:
 3     int removeElement(int A[], int n, int elem) {
 4         // IMPORTANT: Please reset any member data you declared, as
 5         // the same Solution instance will be reused for each test case.
 6         int i, j, k;
 7         int len;
 8         
 9         if(A == nullptr){
10             return 0;
11         }
12         
13         len = n;
14         i = 0;
15         j = n - 1;
16         while(i <= j){ // BUG: j > i, fixed here
17             if(A[i] == elem){
18                 while(j >= i){ // BUG: j > i, fixed here
19                     if(A[j] == elem){
20                         --j;
21                         --len;
22                     }else{
23                         A[i] = A[j];
24                         ++i;
25                         --j;
26                         --len;
27                         break;
28                     }
29                 }
30             }else{
31                 ++i;
32             }
33         }
34         
35         return len;
36     }
37 };

Solution2:

  It was mentioned in the problem that "the order can be changed", but there seemed to be no extra benefit from changing the order. So let's do this without changing the order.

  Scan the array from left to right, when ever a target value is found, record the accumulated number of appearance of the target, and use this as an $offset. Move other non-target value back by $offset positions to make a new array.

  Time complexity is O(n), space complexity is O(1).

Accepted code:

 1 class Solution {
 2 public:
 3     int removeElement(int A[], int n, int elem) {
 4         // IMPORTANT: Please reset any member data you declared, as
 5         // the same Solution instance will be reused for each test case.
 6         int i, j;
 7         int len;
 8         
 9         if(A == nullptr){
10             return 0;
11         }
12         
13         len = n;
14         i = 0;
15         j = 0;
16         while(i < n){
17             if(A[i] == elem){
18                 --len;
19                 ++i;
20             }else{
21                 A[j++] = A[i++];
22             }
23         }
24         
25         return len;
26     }
27 };
原文地址:https://www.cnblogs.com/zhuli19901106/p/3462407.html