91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

C++有序數組中怎么去除重復項

發布時間:2022-03-28 10:49:55 來源:億速云 閱讀:279 作者:iii 欄目:大數據

這篇文章主要介紹“C++有序數組中怎么去除重復項”,在日常操作中,相信很多人在C++有序數組中怎么去除重復項問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++有序數組中怎么去除重復項”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Remove Duplicates from Sorted Array 有序數組中去除重復項

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就是數組中不同數字的個數,代碼如下:

解法一:

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,所以本質上都是一樣的,參見代碼如下:

解法二:

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 大,則一定不會有重復(前提是數組必須有序),參見代碼如下:

解法三:

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++有序數組中怎么去除重復項”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

朔州市| 周口市| 天祝| 喀什市| 建湖县| 鄄城县| 巴东县| 宁都县| 滦南县| 育儿| 龙川县| 锡林郭勒盟| 岑巩县| 潜山县| 嘉祥县| 岳普湖县| 会昌县| 万载县| 贺州市| 简阳市| 宜川县| 六枝特区| 黄大仙区| 耿马| 乌兰县| 玉屏| 皋兰县| 化隆| 南城县| 昔阳县| 中宁县| 团风县| 桦南县| 黄龙县| 永定县| 岳普湖县| 从江县| 浮山县| 仪陇县| 临汾市| 志丹县|