溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C++有序數(shù)組中去除重復(fù)項的方法

發(fā)布時間:2022-03-28 13:47:45 來源:億速云 閱讀:315 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要講解了“C++有序數(shù)組中去除重復(fù)項的方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C++有序數(shù)組中去除重復(fù)項的方法”吧!

有序數(shù)組中去除重復(fù)項

Example 1:

Given nums = [1,1,1,2,2,3],

Your function should return length =

5

, with the first five elements of

nums

being

1, 1, 2, 2

and 3 respectively.

It doesn"t matter what you leave beyond the returned length.

Example 2:

Given nums = [0,0,1,1,1,1,2,3,3],

Your function should return length =

7

, with the first seven elements of

nums

being modified to 

0

, 0, 1, 1, 2, 3 and 3 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 Array 的拓展,這里允許最多重復(fù)的次數(shù)是兩次,那么可以用一個變量 cnt 來記錄還允許有幾次重復(fù),cnt 初始化為1,如果出現(xiàn)過一次重復(fù),則 cnt 遞減1,那么下次再出現(xiàn)重復(fù),快指針直接前進(jìn)一步,如果這時候不是重復(fù)的,則 cnt 恢復(fù)1,由于整個數(shù)組是有序的,所以一旦出現(xiàn)不重復(fù)的數(shù),則一定比這個數(shù)大,此數(shù)之后不會再有重復(fù)項。理清了上面的思路,則代碼很好寫了:

解法一:

class Solution {
public:
    int removeDuplicates(vector<int>& nums) {
        int pre = 0, cur = 1, cnt = 1, n = nums.size();
        while (cur < n) {
            if (nums[pre] == nums[cur] && cnt == 0) ++cur;
            else {
                if (nums[pre] == nums[cur]) --cnt;
                else cnt = 1;
                nums[++pre] = nums[cur++];
            }
        }
        return nums.empty() ? 0 : pre + 1;
    }
};

這里其實也可以用類似于 Remove Duplicates from Sorted Array 中的解法三的模版,由于這里最多允許兩次重復(fù),那么當(dāng)前的數(shù)字 num 只要跟上上個覆蓋位置的數(shù)字 nusm[i-2] 比較,若 num 較大,則絕不會出現(xiàn)第三個重復(fù)數(shù)字(前提是數(shù)組是有序的),這樣的話根本不需要管 nums[i-1] 是否重復(fù),只要將重復(fù)個數(shù)控制在2個以內(nèi)就可以了,參見代碼如下:

解法二:

class Solution {
public:
    int removeDuplicates(vector<int>& nums) {
        int i = 0;
        for (int num : nums) {
            if (i < 2 || num > nums[i - 2]) {
                nums[i++] = num;
            }
        }
        return i;
    }
};

感謝各位的閱讀,以上就是“C++有序數(shù)組中去除重復(fù)項的方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對C++有序數(shù)組中去除重復(fù)項的方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI