《程序员代码面试指南》第七章 位运算 在其他数都出现偶数次的数组中找到出现奇数次的数...

题目
在其他数都出现偶数次的数组中找到出现奇数次的数
java代码
package com.lizhouwei.chapter7;

/**
 * @Description: 在其他数都出现偶数次的数组中找到出现奇数次的数
 * @Author: lizhouwei
 * @CreateDate: 2018/4/28 21:02
 * @Modify by:
 * @ModifyDate:
 */
public class Chapter7_5 {

    //在其他数都出现偶数次的数组中找到出现奇数次的数
    public int getOnce(int[] arr) {
        int once = 0;
        for (int i = 0; i < arr.length; i++) {
            once = once ^ arr[i];
        }
        return once;
    }

    //在其他数都出现偶数次的数组中找到出现奇数次的数
    public int getTwo(int[] arr) {
        int once = 0;
        for (int i = 0; i < arr.length; i++) {
            once = once ^ arr[i];
        }
        int rightOne = once & (~once + 1);//取最左的第一个出现1的位数
        int one = once;
        for (int i = 0; i < arr.length; i++) {
            if ((rightOne & arr[i]) != 0) {
                one = one ^ arr[i];
            }
        }
        System.out.print("第一个数:" + one);
        System.out.println(";第二个数:" + (once ^ one));
        return once;
    }

    //测试
    public static void main(String[] args) {
        Chapter7_5 chapter = new Chapter7_5();
        int[] arr = {1, 1, 2, 3, 3, 4, 4, 5, 5};
        int reslt = chapter.getOnce(arr);
        System.out.print("{1,1,2,3,3,4,4,5,5}中");
        System.out.println("只出现一次的数为:" + reslt);
        int[] arr1 = {1, 1, 2, 3, 3, 4, 5, 5};
        System.out.print("{1,1,2,3,3,4,5,5}中");
        chapter.getTwo(arr1);
    }
}
结果

1369004-20180428214412876-1647814857.png

转载于:https://www.cnblogs.com/lizhouwei/p/8969697.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值