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

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

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.

 

思路:这道题与 26.remove duplicates from sorted array思路一样。设置一个len=0;然后开始从0开始读数组里的数

如果这个数是满足条件的(!=val)则让把数赋在len位置上,并递增len的值。如果不满足条件即要移除这个数的话,

跳过什么都不做就好了。最后返回len的值。

1 class Solution { 2     public int removeElement(int[] nums, int val) { 3         if (nums.length==0) 4             return 0; 5         int len = 0; 6         for (int i=0;i

 

转载于:https://www.cnblogs.com/David-Lin/p/7732857.html

你可能感兴趣的文章
大厂前端高频面试问题与答案精选
查看>>
我们用5分钟写了一个跨多端项目
查看>>
Visual Studio 15.4发布,新增多平台支持
查看>>
有赞透明多级缓存解决方案(TMC)设计思路
查看>>
如何设计高扩展的在线网页制作平台
查看>>
Git 2.5增加了工作树、改进了三角工作流、性能等诸多方面
查看>>
Swift 5将强制执行内存独占访问
查看>>
中台之上(二):为什么业务架构存在20多年,技术人员还觉得它有点虚?
查看>>
深度揭秘腾讯云低功耗广域物联网LPWAN 技术及应用
查看>>
与Jeff Sutherland谈敏捷领导力
查看>>
More than React(四)HTML也可以静态编译?
查看>>
React Native最佳学习模版- F8 App开源了
查看>>
云服务正在吞噬世界!
查看>>
阅读Android源码的一些姿势
查看>>
Web语义化标准解读
查看>>
一份代码构建移动、桌面、Web全平台应用
查看>>
高性能 Lua 技巧(译)
查看>>
区分指针、变量名、指针所指向的内存
查看>>
异步编程的世界
查看>>
最近话题火爆的四件事你知道不?
查看>>