[LeetCode 0 열 에서] No 27. Remove Element

728 단어 자바LeetCode
제목.
    
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
/********************************
* 본문 은 블 로그 에서 "리 보 가 빈"
* 전재 출처 표시:http://blog.csdn.net/buptgshengod
******************************************/

좋은 웹페이지 즐겨찾기