鱼C论坛

 找回密码
 立即注册
查看: 944|回复: 0

[技术交流] C++刷剑指offer(面试题56 - I. 数组中数字出现的次数)【数据结构】

[复制链接]
发表于 2020-4-6 21:12:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 糖逗 于 2020-5-8 17:46 编辑

题目描述:
一个整型数组 nums 里除两个数字之外,其他数字都出现了两次。请写程序找出这两个只出现一次的数字。要求时间复杂度是O(n),空间复杂度是O(1)。

 

示例 1:

输入:nums = [4,1,4,6]
输出:[1,6] 或 [6,1]
示例 2:

输入:nums = [1,2,10,4,1,4,3,3]
输出:[2,10] 或 [10,2]
 

限制:

2 <= nums <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。一个整型数组 nums 里除两个数字之外,其他数字都出现了两次。请写程序找出这两个只出现一次的数字。要求时间复杂度是O(n),空间复杂度是O(1)。

 

示例 1:

输入:nums = [4,1,4,6]
输出:[1,6] 或 [6,1]
示例 2:

输入:nums = [1,2,10,4,1,4,3,3]
输出:[2,10] 或 [10,2]
 

限制:

2 <= nums <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
#include <stack>
#include <vector>
#include <iostream>
#include <algorithm>

using namespace std;


vector<int> solution(vector<int>& input){
        vector<int> res;
        sort(input.begin(), input.end());
        stack<int> temp; 
        for(int i = 0; i < input.size(); i++){
                if(temp.empty() || temp.top() != input[i]){
                        temp.push(input[i]);
                        continue;
                }
                if(temp.top() == input[i]){
                        temp.pop();
                        continue;
                }
        }
        int len = temp.size();
        for(int j = 0; j < len; j++){
                res.push_back(temp.top());
                temp.pop();
                
        }
        return res;
}

int main(void){
        vector<int> input;
        int number;
        while(cin >> number){
                input.push_back(number);
        }
        vector<int> res = solution(input);
        for(int i = 0; i < res.size(); i++){
                cout << res[i] << " ";
        } 
        cout << endl;
        return 0;
}


注意事项:
1.暂无。

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 13:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表