• 【LeetCode】137. Single Number II


    题目:

    Given an array of integers, every element appears three times except for one. Find that single one.

    Note:
    Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

    题解:

    The code seems tricky and hard to understand at first glance.
    However, if you consider the problem in Boolean algebra form, everything becomes clear.

    What we need to do is to store the number of '1's of every bit. Since each of the 32 bits follow the same rules, we just need to consider 1 bit. We know a number appears 3 times at most, so we need 2 bits to store that. Now we have 4 state, 00, 01, 10 and 11, but we only need 3 of them.

    In this solution, 00, 01 and 10 are chosen. Let 'ones' represents the first bit, 'twos' represents the second bit. Then we need to set rules for 'ones' and 'twos' so that they act as we hopes. The complete loop is 00->10->01->00(0->1->2->3/0).

    • For 'ones', we can get 'ones = ones ^ A[i]; if (twos == 1) then ones = 0', that can be tansformed to 'ones = (ones ^ A[i]) & ~twos'.

    • Similarly, for 'twos', we can get 'twos = twos ^ A[i]; if (ones* == 1) then twos = 0' and 'twos = (twos ^ A[i]) & ~ones'. Notice that 'ones*' is the value of 'ones' after calculation, that is why twos is
      calculated later.


    Here is another example. If a number appears 5 times at most, we can write a program using the same method. Now we need 3 bits and the loop is 000->100->010->110->001. The code looks like this:

    int singleNumber(int A[], int n) {
    	int na = 0, nb = 0, nc = 0;
    	for(int i = 0; i < n; i++){
    		nb = nb ^ (A[i] & na);
    		na = (na ^ A[i]) & ~nc;
    		nc = nc ^ (A[i] & ~na & ~nb);
    	}
    	return na & ~nb & ~nc;
    }
    

    Or even like this:

    int singleNumber(int A[], int n) {
    	int twos = 0xffffffff, threes = 0xffffffff, ones = 0;
    	for(int i = 0; i < n; i++){
    		threes = threes ^ (A[i] & twos);
    		twos = (twos ^ A[i]) & ~ones;
    		ones = ones ^ (A[i] & ~twos & ~threes);
    	}
    	return ones;
    }
    

    I hope all these above can help you have a better understand of this problem. (from here,and author is woshidaishu).

    Solution 1 ()

    class Solution {
    public:
        int singleNumber(vector<int>& nums) {
            int ones = 0, twos = 0;
            for(auto n : nums){
                ones = (ones ^ n) & ~twos;
                twos = (twos ^ n) & ~ones;
            }
            return ones;
        }
    };
  • 相关阅读:
    一:ORM关系对象映射(Object Relational Mapping,简称ORM)
    How to manage concurrency in Django models
    python实现redis三种cas事务操作
    django autocommit的一个坑,读操作的事务占用导致锁表
    Unity3d载入外部图片文件
    MySQL 查询某个列中同样值的数量统计
    Android_自己定义切换控件SwitchView
    SWTBOK測试实践系列(5) -- 项目中使用手动和自己主动化的策略
    自己定义一个Dialog样式的Activity窗体,切换到Dialog的方法
    搜狗语音云开发入门(二)——使用离线语音识别服务
  • 原文地址:https://www.cnblogs.com/Atanisi/p/7190444.html
Copyright © 2020-2023  润新知