【LeetCode从零单排】No27.Remove Element
生活随笔
收集整理的這篇文章主要介紹了
【LeetCode从零单排】No27.Remove Element
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
題目
? ??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.
代碼
public class Solution {public int removeElement(int[] A, int elem) {int next = 0;for(int i = 0; i < A.length; i++) {if(A[i] != elem) {A[next++] = A[i];}}return next;} }代碼下載:https://github.com/jimenbian/GarvinLeetCode
/********************************
* 本文來自博客 ?“李博Garvin“
* 轉(zhuǎn)載請標(biāo)明出處:http://blog.csdn.net/buptgshengod
******************************************/
總結(jié)
以上是生活随笔為你收集整理的【LeetCode从零单排】No27.Remove Element的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【LeetCode从零单排】No21.M
- 下一篇: 【LeetCode从零单排】No28Im