C++LeetCode 구현(27.요소 제거)

[LeetCode]27.원소 제거
Given an array nums and a value val, 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 by modifying the input array in-place with O(1) extra memory.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
Example 1:
Given nums = [3,2,2,3], val = 3,
Your function should return length = 2, with the first two elements of nums being 2.
It doesn't matter what you leave beyond the returned length.
Example 2:
Given nums = [0,1,2,2,3,0,4,2], val = 2,
Your function should return length =
5
, with the first five elements of
nums
containing 
0
,
1
,
3
,
0
, and 4.
Note that the order of those five elements can be arbitrary.
It doesn't matter what values are set beyond the returned length.
Clarification:
Confused why the returned value is an integer but your answer is an array?
Note that the input array is passed in by reference, which means modification to the input array will be known to the caller as well.
Internally you can think of this:
// nums is passed in by reference. (i.e., without making a copy)
int len = removeElement(nums, val);
// any modification to nums in your function would be known by the caller.
// using the length returned by your function, it prints the first len elements.
for (int i = 0; i < len; i++) {
print(nums[i]);
}
이 문 제 는 주어진 값 과 같은 숫자 를 제거 하고 새로운 배열 의 길 이 를 되 돌려 줍 니 다.비교적 쉬 운 문제 입 니 다.하나의 변수 만 계산 한 다음 에 원래 배열 을 옮 겨 다 니 며 현재 값 과 주어진 값 이 다 르 면 현재 값 을 계수 변수의 위 치 를 덮어 쓰 고 계수 변 수 를 1 로 추가 합 니 다.코드 는 다음 과 같 습 니 다:

class Solution {
public:
    int removeElement(vector<int>& nums, int val) {
        int res = 0;
        for (int i = 0; i < nums.size(); ++i) {
            if (nums[i] != val) nums[res++] = nums[i];
        }
        return res;
    }
};
C++구현 LeetCode(27.요소 제거)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C++제거 요소 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기