博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode OJ]27. Remove Element
阅读量:5013 次
发布时间:2019-06-12

本文共 1110 字,大约阅读时间需要 3 分钟。

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.

 

Hint:

  1. Try two pointers.
  2. Did you use the property of "the order of elements can be changed"?
  3. What happens when the elements to remove are rare?

 

  题目不许开辟新空间来定义新数组,所以就只能在所给的数组中解决问题.

  题目中说,The order of elements can be changed.通过改变元素的顺序,来完成.

  思路: 定义一个计数器count,从零开始.每遇到一个非指定数字(val),就把它赋值给从零开始的元素,每赋值一次,count++,则遍历完所有数组元素之后,得到的count就是含有除了val以外的元素的数组的长度,原数组的count长度,就是新数组.

1 int removeElement(int* nums, int numsSize, int val) { 2     int j = 0; 3     for(int i = 0; i < numsSize; i++){ 4         if(nums[i] != val){ 5             nums[j] = nums[i]; 6             j++; 7         } 8     } 9     return j;10 }

 

版权声明:本文为博主原创文章,未经博主允许不得转载。

 

转载于:https://www.cnblogs.com/wronganswer/p/6291691.html

你可能感兴趣的文章
Mvc--Html.ActionLink()的用法
查看>>
delphi 基础书籍推荐
查看>>
《面向对象程序设计》2018年春学期寒假及博客作业总结
查看>>
iOS开发UI之KVC(取值/赋值) - KVO (观察某个对象的某个属性的改变)
查看>>
1.7 将一个MxN矩阵所有为0的元素所在行和列全部置0
查看>>
删除U盘时提示无法停止‘通用卷’设备的解决方法!!不要每次都硬拔了,对电脑有不小的损害!!!...
查看>>
Java中接口与接口和类之间的关系
查看>>
芯片TPS70925
查看>>
linux shell 发送email 附件
查看>>
人群密度估计 CrowdCount
查看>>
JSON.parse()和JSON.stringify()
查看>>
.net 常用正则表达式
查看>>
Java泛型中的标记符含义:
查看>>
初遇GitHub
查看>>
[C# 网络编程系列]专题八:P2P编程
查看>>
Jsの练习-数组常用方法 -forEach()
查看>>
动态绑定treeview的方法
查看>>
jvm参数
查看>>
3-1 案例环境初始化
查看>>
读《构建之法》第四章和十七章有感
查看>>