• 27 Remove Element


    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.

    题目的要求大概是给定一个数组和一个值,删除数组中所有和该值相同的元素并返回一个新的长度

    说一下思路:

                   可以采用双指针,下标i循环数组,每次都让p_last下标与i一起遍历,当A[i]与给定的value相同的时候,p_last停止,数组长度-1,i继续走将下一个值赋给A[p_last],如果是A[i]与value不同的话,就让p_last+1

    具体的代码如下:

     1 class Solution {
     2 public:
     3     int removeElement(int A[], int n, int elem) {
     4        int length = n;
     5        int p_last = 0;
     6        for(int i=0;i<n;i++){
     7             A[p_last] = A[i];
     8             if(A[i] == elem)
     9                 length--;
    10             else
    11                 p_last++;
    12        }
    13        return length;
    14     }
    15 };

     或者可以有一个更加直观的理解:

          如下面的代码:

     1 class Solution {
     2 public:
     3     int removeElement(int A[], int n, int elem) {
     4        int length = n;
     5        int p_last = 0;
     6         for(int i=0;i<n;i++){
     7             if(A[i]==elem){
     8                 length--;
     9             }else{
    10                A[p_last] = A[i];
    11                p_last++;
    12             }
    13         }
    14        return length;
    15     }
    16 };

    p_last代表当前”新“数组的下标,i循环数组当A[i]!=elem时进行赋值,并将p_last加一”新“数组的下一个元素等待被插入个人认为这种方式解释方式比较直观。

  • 相关阅读:
    PAT A1108 Finding Average [字符串处理]
    PAT A1013 Battle Over Cities [图的遍历]
    关于斐波那契数列的算法
    关于浏览器的事件队列
    类型与进制转换
    【待整理】python 关键字
    闭包和函数的自运行
    cookie-cart购物车
    有意思的效果——左右摇摆
    工厂模式
  • 原文地址:https://www.cnblogs.com/xiaoysec/p/4415604.html
Copyright © 2020-2023  润新知