亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

C++移除元素的方法是什么

發布時間:2022-10-22 15:38:00 來源:億速云 閱讀:140 作者:iii 欄目:編程語言

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

移除元素

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

向AI問一下細節

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

c++
AI

澄江县| 左贡县| 西贡区| 尤溪县| 合川市| 慈利县| 淮滨县| 连江县| 多伦县| 博湖县| 广安市| 光山县| 涿鹿县| 北流市| 吉首市| 黑河市| 皋兰县| 秭归县| 天祝| 景德镇市| 南京市| 沙田区| 栾城县| 清丰县| 石屏县| 岳普湖县| 万年县| 囊谦县| 葵青区| 靖西县| 井研县| 济南市| 应城市| 呼伦贝尔市| 库车县| 宜兰县| 营山县| 西乌珠穆沁旗| 桐乡市| 云龙县| 万载县|