C++LeetCode 구현(26.질서 있 는 배열 에서 중복 항목 제거)
3696 단어 C++순서 배열 에서 중복 항목 제거LeetCode
Given a sorted array nums, remove the duplicates in-place such that each element appear only once 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.
Example 1:
Given nums = [1,1,2],
Your function should return length =
2
, with the first two elements of
nums
being
1
and
2
respectively.
It doesn't matter what you leave beyond the returned length.
Example 2:
Given nums = [0,0,1,1,1,2,2,3,3,4],
Your function should return length =
5
, with the first five elements of
nums
being modified to
0
,
1
,
2
,
3
, and
4
respectively.
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 = removeDuplicates(nums);
// 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]);
}
이 문 제 는 우리 가 질서 있 는 배열 에서 중복 항목 과 이전 문 제 를 제거 해 야 한다. Remove Duplicates from Sorted List 의 문 제 는 매우 유사 하지만 간단하게 해 야 한다.왜냐하면 배열 의 값 은 아래 표 시 를 통 해 직접 방문 할 수 있 고 링크 는 안 되 기 때문이다.그러면 이 문제 의 풀이 방향 은 빠 르 고 느 린 지침 으로 옮 겨 다 니 는 좌 표를 기록 하 는 것 이다.처음에 두 지침 은 모두 첫 번 째 숫자 를 가 리 켰 다.만약 에 두 지침 이 가리 키 는 숫자 가 같다 면 빠 른 지침 은 한 걸음 앞으로 가 고 만약 에 다르다 면 두 지침 은 모두 한 걸음 앞으로 가 는 것 이다.이렇게 하면 빠 른 지침 이 전체 배열 을 다 간 후에느 린 포인터 현재 좌표 에 1 을 더 하면 배열 의 서로 다른 숫자의 개수 입 니 다.코드 는 다음 과 같 습 니 다.
해법 1:
class Solution {
public:
int removeDuplicates(vector<int>& nums) {
int pre = 0, cur = 0, n = nums.size();
while (cur < n) {
if (nums[pre] == nums[cur]) ++cur;
else nums[++pre] = nums[cur++];
}
return nums.empty() ? 0 : (pre + 1);
}
};
우 리 는 for 순환 으로 쓸 수 있 습 니 다.여기 있 는 j 는 바로 위의 해법 중의 pre 입 니 다.i 는 cur 이기 때문에 본질 적 으로 똑 같 습 니 다.코드 는 다음 과 같 습 니 다.해법 2:
class Solution {
public:
int removeDuplicates(vector<int>& nums) {
int j = 0, n = nums.size();
for (int i = 0; i < n; ++i) {
if (nums[i] != nums[j]) nums[++j] = nums[i];
}
return nums.empty() ? 0 : (j + 1);
}
};
여기 서도 쓰기 방법 을 바 꿀 수 있 습 니 다.변수 i 로 현재 덮어 쓰 는 위 치 를 표시 합 니 다.중복 숫자 가 없 기 때문에 현재 숫자 num 으로 숫자 nums[i-1]에 덮어 쓰 는 것 을 비교 해 야 합 니 다.num 만 크 면 중복 되 지 않 습 니 다(전 제 는 배열 이 질서 가 있어 야 합 니 다).코드 는 다음 과 같 습 니 다.해법 3:
class Solution {
public:
int removeDuplicates(vector<int>& nums) {
int i = 0;
for (int num : nums) {
if (i < 1 || num > nums[i - 1]) {
nums[i++] = num;
}
}
return i;
}
};
C++구현 LeetCode(26.질서 있 는 배열 에서 중복 항목 제거)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C++구현 질서 있 는 배열 에서 중복 항목 을 제거 하 는 내용 은 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.