&LeetCode108& 只出现一次的数字

题目

给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。

说明:
你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?

示例 1:
输入: [2,2,1]
输出: 1
示例 2:
输入: [4,1,2,1,2]
输出: 4

来源:力扣(LeetCode

思路

首先,遍历数组中的每个数字;
如果,当前数字已经在 HashSet ,则将 HashSet 中对应的该数字删除;
否则,就将当前数字加入 HashSet。

C++代码

class Solution {
public:
    int singleNumber(vector<int>& nums) 
    {
        unordered_set<int> st;
        for (int num : nums)
        {
            if (st.count(num))
                st.erase(num);
            else st.insert(num);
        }
        return *st.begin();
    }
};
发布了51 篇原创文章 · 获赞 20 · 访问量 2098

猜你喜欢

转载自blog.csdn.net/weixin_40482465/article/details/104446341