标签:auto single cond 次数 off 个数 数组 lan 复杂
在一个数组 nums 中除一个数字只出现一次之外,其他数字都出现了三次。请找出那个只出现一次的数字。
示例 1:
输入:nums = [3,4,3,3]
输出:4
示例 2:
输入:nums = [9,1,7,9,7,9,7]
输出:1
限制:
先统计每个数出现次数,然后遍历找到只出现一次的数字。
时间复杂度:O(n)
空间复杂度:O(n)
class Solution {
public:
int singleNumber(vector<int>& nums) {
int res = 0;
unordered_map<int, int> ump;
for (auto n : nums) {
if (ump.count(n) == 0) {
ump.insert({n, 1});
} else {
++ump[n];
}
}
for (auto it = ump.begin(); it != ump.end(); ++it) {
if (it->second == 1) return it->first;
}
return res;
}
};
【剑指Offer】面试题56 - II. 数组中数字出现的次数 II
标签:auto single cond 次数 off 个数 数组 lan 复杂
原文地址:https://www.cnblogs.com/galaxy-hao/p/12815393.html