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

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

hot3.png

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 遍历,另一指针 j 指向下一个非elem的位置,返回 j.

public class Solution {    public int removeElement(int[] A, int elem) {        int j=0;        for(int i=0;i

转载于:https://my.oschina.net/jdflyfly/blog/284036

你可能感兴趣的文章
centos:jdk安装
查看>>
phpize无法扩展编译
查看>>
6月第一周全球域名解析商:DNSPod份额1.17%居第9
查看>>
并发用户数详解
查看>>
Android音频开发(1):基础知识
查看>>
mount
查看>>
好久之前的文章
查看>>
iptable配置
查看>>
我的友情链接
查看>>
如何将git项目转移给其他人
查看>>
Cisco——基于链路的HSRP到ISP网络的基本配置
查看>>
vsftp配置大全---超完整版
查看>>
MVC和MVVM的区别
查看>>
Put Polymer Dialog to Center
查看>>
IDEA-常用插件,使用FindBugs寻找bug,代码分析
查看>>
无盘中用户数据的保存
查看>>
我的友情链接
查看>>
详解TCP三次握手
查看>>
mysql驱动取别名报Column ×× not found 解决方案 -- T1 Holly
查看>>
在一个字符串里面怎么找出最长回文子序列长度
查看>>