• 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 };
  • 相关阅读:
    kali linux安装vm
    视频学习_css基础学习
    w3c_html_study_note_5.26
    备份apt目录节省下载时间
    校园网小记
    [原创汉化]linux前端神器 WebStorm8 汉化
    虚拟机备份转移后,网络启动异常,提示“SIOCSIFADDR: No such device”的解决方案
    python开发之virtualenv与virtualenvwrapper讲解
    Nginx负载均衡概述
    centos7安装python3 以及tab补全功能
  • 原文地址:https://www.cnblogs.com/zhuli19901106/p/3462407.html
Copyright © 2020-2023  润新知