[ESTL] lc645. 错误的集合(STL+数学+哈希表)
Posted Ypuyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ESTL] lc645. 错误的集合(STL+数学+哈希表)相关的知识,希望对你有一定的参考价值。
1. 题目来源
链接:645. 错误的集合
2. 题目解析
非常常见的题目了,用哈希可以直接解决,数学等差数列求和也是完全可以的,桶排序的思路也是可以的。
具体思路请看 【宫水三叶】一题三解:「计数」&「数学」&「桶排序」,三叶姐出品,必属精品!
在此只写我的一个偷懒做法,直接哈希…
时间复杂度:
O
(
n
)
O(n)
O(n)
空间复杂度:
O
(
n
)
O(n)
O(n)
STL
class Solution {
public:
vector<int> findErrorNums(vector<int>& nums) {
int n = nums.size();
unordered_map<int, int> hmp;
for (auto& e : nums) hmp[e] ++ ;
int a, b;
for (int i = 1; i <= n; i ++ )
if (!hmp[i]) a = i;
else if (hmp[i] == 2) b = i;
return {b, a};
}
};
以上是关于[ESTL] lc645. 错误的集合(STL+数学+哈希表)的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 645. 错误的集合(Set Mismatch)