码迷,mamicode.com
首页 > 编程语言 > 详细

数组中数字出现的次数II

时间:2020-05-13 16:45:03      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:pre   数字   其他   ==   color   vector   ase   end   for   

在一个数组 nums 中除一个数字只出现一次之外,其他数字都出现了三次。请找出那个只出现一次的数字。

 

示例 1:

输入:nums = [3,4,3,3]
输出:4
示例 2:

输入:nums = [9,1,7,9,7,9,7]
输出:1

思路:map大法好

 1 class Solution {
 2 public:
 3     int singleNumber(vector<int>& nums) {
 4         map<int,int> m;
 5         for(int num:nums)
 6         {
 7             if(m.find(num)==m.end())
 8                 m[num]=1;
 9             else
10             {
11                 m[num]++;
12                 if(m[num]==3)
13                     m.erase(num);
14             }
15         }
16         auto iter=m.begin();
17         return (*iter).first;
18     }
19 };

 

数组中数字出现的次数II

标签:pre   数字   其他   ==   color   vector   ase   end   for   

原文地址:https://www.cnblogs.com/cs0915/p/12883038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!