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

溫馨提示×

溫馨提示×

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

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

C++中怎么利用LeetCode移除元素

發布時間:2021-07-14 11:40:22 來源:億速云 閱讀:107 作者:Leah 欄目:開發技術

這篇文章給大家介紹C++中怎么利用LeetCode移除元素,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

[LeetCode] 27. Remove Element 移除元素

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移除元素就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

科尔| 佛学| 顺义区| 北碚区| 温州市| 教育| 静安区| 平谷区| 海原县| 庆云县| 临西县| 凤庆县| 班玛县| 左权县| 科技| 始兴县| 米林县| 西峡县| 聂荣县| 林州市| 兴业县| 安西县| 确山县| 达州市| 科技| 广东省| 靖边县| 格尔木市| 苍南县| 桂林市| 金山区| 深圳市| 广东省| 海伦市| 昌平区| 石河子市| 旺苍县| 达拉特旗| 云林县| 上杭县| 天全县|