zoukankan      html  css  js  c++  java
  • 27 Remove Element

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

    Do not allocate extra space for another array, you must do this in place with constant memory.

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

    Example:
    Given input array nums = [3,2,2,3]val = 3

    Your function should return length = 2, with the first two elements of nums being 2.

     1 class Solution {
     2 public:
     3     int removeElement(vector<int>& nums, int val) {
     4         int start = 0;
     5         int len = nums.size();
     6         for(int i = 0 ; i < len ; i++){
     7             if(val != nums[i] ){
     8                 nums[start++] = nums[i];
     9             }
    10         }
    11         return start;
    12     }
    13 };
  • 相关阅读:
    struts2 DMI
    MFC添加背景图片
    c++ 副本构造器
    climits
    Qt中的qreal
    Http概述(一)
    重构学习-重构原则
    QDir的mkdir和mkpath区别
    Qt学习笔记网络(一)
    Qt5 新特性
  • 原文地址:https://www.cnblogs.com/sankexin/p/5850941.html
Copyright © 2011-2022 走看看