博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Remove Element
阅读量:6800 次
发布时间:2019-06-26

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

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.

 

1 class Solution { 2 public: 3     int removeElement(vector
& nums, int val) { 4 int length = 0; 5 for(int i = 0; i < nums.size(); i++){ 6 if(nums[i] != val) 7 nums[length++] = nums[i]; 8 } 9 return length;10 }11 };

 

转载于:https://www.cnblogs.com/horizonice/p/4770546.html

你可能感兴趣的文章
SEOer怎样安排一天的工作
查看>>
深入学习golang(4)—new与make
查看>>
就近期面试所见,谈谈求职者的问题和面试官的问题
查看>>
markdown的语法说明
查看>>
高效的SQLSERVER分页查询(推荐)
查看>>
Android布局实现圆角边框
查看>>
linux 重启网卡的方法
查看>>
assert_param
查看>>
JVM参数配置
查看>>
【leetcode】Best Time to Buy and Sell 2(too easy)
查看>>
Centos下Apache使用Symlink访问外部目录出现403
查看>>
TortoiseSVN中Branching和Merging实践
查看>>
Substring with Concatenation of All Words
查看>>
SNF快速开发平台3.0之-界面个性化配置+10种皮肤+7种菜单-Asp.net+MVC4.0+WebAPI+EasyUI+Knockout...
查看>>
耗时两月,NHibernate系列出炉
查看>>
careercup-树与图 4.3
查看>>
[转载]开源实体映射框架EmitMapper介绍
查看>>
[转]移动端开发经验
查看>>
css 选择器
查看>>
labview的IMAQ中sanp和grab有什么不同
查看>>