日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪(fǎng)問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > c/c++ >内容正文

c/c++

LeetCode 26 Remove Duplicates from Sorted Array [Array/std::distance/std::unique] c++

發(fā)布時(shí)間:2025/6/17 c/c++ 53 豆豆
生活随笔 收集整理的這篇文章主要介紹了 LeetCode 26 Remove Duplicates from Sorted Array [Array/std::distance/std::unique] c++ 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

LeetCode 26 Remove Duplicates from Sorted Array [Array/std::distance/std::unique] <c++>

給出排序好的一維數(shù)組,刪除其中重復(fù)元素,返回刪除后數(shù)組長(zhǎng)度,要求不另開(kāi)內(nèi)存空間。

C++

很簡(jiǎn)單的題目,但是第一發(fā)RE了,找了很久問(wèn)題出在哪。最后單步調(diào)試發(fā)現(xiàn)vector.size()返回值是unsigned型的。unsigned型和int型數(shù)據(jù)運(yùn)算結(jié)果還是unsigned型的。這就導(dǎo)致當(dāng)數(shù)組為空時(shí),nums.size()-1是一個(gè)大正整數(shù),循環(huán)變量i很大時(shí),執(zhí)行了越界下標(biāo)訪(fǎng)問(wèn),出現(xiàn)了段錯(cuò)誤。

/* Status: Runtime Error Runtime Error Message: Line 933: Char 34: runtime error: reference binding to null pointer of type 'value_type' (stl_vector.h) Last executed input: [] */ class Solution { public:int removeDuplicates(vector<int>& nums) {unique(nums.begin(),nums.end());for(unsigned i = 0; i < nums.size()-1; ++i) {if(nums[i]>=nums[i+1])return i+1;}return nums.size();} };

雖然知道這個(gè)題用STL可以很方便,但是看到函數(shù)主體只有一行的代碼時(shí)我還是感覺(jué)自己too young

/* Status: Accepted */ class Solution { public:int removeDuplicates(vector<int>& nums) {return distance(nums.begin(),unique(nums.begin(),nums.end()));} };

然后去學(xué)了一發(fā)std::distance的用法:就是返回兩個(gè)迭代器之間的距離。
因?yàn)閟td::unique返回最后一個(gè)不重復(fù)元素的迭代器,所以首迭代器與最后一個(gè)不重復(fù)元素的迭代器的距離就是不重復(fù)元素的個(gè)數(shù),即數(shù)組長(zhǎng)度。

Java

Python3

轉(zhuǎn)載于:https://www.cnblogs.com/NeilThang/p/10304281.html

總結(jié)

以上是生活随笔為你收集整理的LeetCode 26 Remove Duplicates from Sorted Array [Array/std::distance/std::unique] c++的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。