【剑指Offer】56.2 数组中只出现一次的数字,其他出现3次

   日期:2020-08-31     浏览:98    评论:0    
核心提示:题目在一个数组 nums 中除一个数字只出现一次之外,其他数字都出现了三次。请找出那个只出现一次的数字。示例 1:输入:nums = [3,4,3,3]输出:4思路int位存储class Solution { public int singleNumber(int[] nums) { // 存储int 4*8=32每一位 int[] arr = new int[32]; for(int x : nums) for

力扣

题目

在一个数组 nums 中除一个数字只出现一次之外,其他数字都出现了三次。请找出那个只出现一次的数字。

示例 1:

输入:nums = [3,4,3,3]
输出:4

思路

int位存储

class Solution {
    public int singleNumber(int[] nums) {
        // 存储int 4*8=32每一位
        int[] arr = new int[32];
        for(int x : nums) 
            for(int i = 0; i < 32; i++) {
                arr[i] += x & 1;
                x >>= 1;// 从低到高
            }
        int res = 0, mod = 3;

        for(int i = 0; i < 32; i++) {
            res <<= 1;// 从高到低
            res += arr[31-i] % mod;
        }
        return res;
    }
}

编译 自动机状态转移

class Solution {
    public int singleNumber(int[] nums) {
        int one = 0, two = 0;
        // {one, two}每三个状态一次转移
        // {0, 0} {1, 0} {0, 1} {0, 0}
        for(int x : nums){
            one = (one ^ x) & ~two;
            two = (two ^ x) & ~one;
        }
        return one;
    }
}
 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服