zoukankan      html  css  js  c++  java
  • LeetCode 260 Single Number III 数组中除了两个数外,其他的数都出现了两次,找出这两个只出现一次的数

    Given an array of numbers nums, in which exactly two elements appear only once and all the other elements
    appear exactly twice. Find the two elements that appear only once.
    For example:
    Given nums = [1, 2, 1, 3, 2, 5], return [3, 5].
    Note:
    1.The order of the result is not important. So in the above example, [5, 3] is also correct.
    2.Your algorithm should run in linear runtime complexity. Could you implement it using only constant space complexity?

    方法一:

    首先计算nums数组中所有数字的异或,记为xor
    令lowbit = xor & -xor,lowbit的含义为xor从低位向高位,第一个非0位所对应的数字
    例如假设xor = 6(二进制:0110),则-xor为(二进制:1010,-6的补码)
    则lowbit = 2(二进制:0010)

     1 class Solution {
     2 public:
     3     vector<int> singleNumber(vector<int>& nums) {
     4         int size=nums.size();
     5         if(size==0||nums.empty())
     6             return vector<int>();
     7         int diff=0;
     8         for(auto &ele:nums)
     9             diff^=ele;
    10         vector<int> res(2,0);
    11         diff&=-diff;//从低位向高位,第一个非0位所对应的数字
    12         for(auto &ele:nums)
    13             if(diff&ele)
    14                 res[0]^=ele;
    15             else
    16                 res[1]^=ele;
    17         return res;
    18     }
    19 };

     方法二:

     1 class Solution {
     2 public:
     3     vector<int> singleNumber(vector<int>& nums) {
     4         int size=nums.size();
     5         if(size==0||nums.empty())
     6             return vector<int>();
     7         int sum=0;
     8         for(auto &ele:nums)
     9             sum^=ele;
    10         vector<int> res(2,0);
    11         //从低位向高位,第一个非0位所对应的数字
    12         int n=1;
    13         while((sum&n)==0)
    14             n=n<<1;
    15         for(auto &ele:nums)
    16             if(n&ele)
    17                 res[0]^=ele;
    18             else
    19                 res[1]^=ele;
    20         return res;
    21     }
    22 };
  • 相关阅读:
    左边定宽, 右边自适应方案
    C3 Transitions, Transforms 以及 Animation总结
    ES6中的Rest参数和默认参数
    Vue项目搭建流程 以及 目录结构构建
    在vue组件的stylus样式总 取消search类型的input按钮中默认样式
    JS与JQ绑定事件的几种方式.
    `<img>`放到`<div>`中底部出现空隙 以及解放方案.
    总结
    一道简单的编程题_ 关于定时器.
    mybatis-resultType和resultMap
  • 原文地址:https://www.cnblogs.com/xidian2014/p/8536847.html
Copyright © 2011-2022 走看看