leetcode 交集

一:數組交集(重在學習set的用法。find(),erase。map<int,int>的用法,find() 1:349 https://leetcode-cn.com/problems/intersection-of-two-arrays/ 題目: 思路:用set來嵌入其中一個數組,在遍歷另一vector的同時在set裏尋找,找到則加入結果集,並在set中erase,保證去除重複 代碼: 2:35
相關文章
相關標籤/搜索