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?

分析

本题和上一题 Single Number,考察的是位运算。

方法1:创建一个长度为sizeof(int)的数组count[sizeof(int)]count[i]表示在在i位出现的1的次数。如果count[i]是3的整数倍,则忽略;否则就把该位取出来组成答案。

方法2:用one记录到当前处理的元素为止,二进制1出现“1次”(mod 3 之后的 1)的有哪些二进制位;用two记录到当前计算的变量为止,二进制1出现“2次”(mod 3 之后的 2)的有哪些二进制位。当onetwo中的某一位同时为1时表示该二进制位上1出现了3次,此时需要清零。即用二进制模拟三进制运算。最终one记录的是最终结果。

代码1

  1. // Single Number II
  2. // 方法1,时间复杂度O(n),空间复杂度O(1)
  3. public class Solution {
  4. public int singleNumber(int[] nums) {
  5. final int W = Integer.SIZE; // 一个整数的bit数,即整数字长
  6. int[] count = new int[W]; // count[i]表示在在i位出现的1的次数
  7. for (int i = 0; i < nums.length; i++) {
  8. for (int j = 0; j < W; j++) {
  9. count[j] += (nums[i] >> j) & 1;
  10. count[j] %= 3;
  11. }
  12. }
  13. int result = 0;
  14. for (int i = 0; i < W; i++) {
  15. result += (count[i] << i);
  16. }
  17. return result;
  18. }
  19. };

代码2

  1. // Single Number II
  2. // 方法2,时间复杂度O(n),空间复杂度O(1)
  3. public class Solution {
  4. public int singleNumber(int[] nums) {
  5. int one = 0, two = 0, three = 0;
  6. for (int i : nums) {
  7. two |= (one & i);
  8. one ^= i;
  9. three = ~(one & two);
  10. one &= three;
  11. two &= three;
  12. }
  13. return one;
  14. }
  15. };

相关题目

原文: https://soulmachine.gitbooks.io/algorithm-essentials/content/java/bitwise-operations/single-number-ii.html