码迷,mamicode.com
首页 > 编程语言 > 详细

Leetcode 260. Single Number III JAVA语言

时间:2017-03-20 19:39:03      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:single number3

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:
The order of the result is not important. So in the above example, [5, 3] is also correct.
Your algorithm should run in linear runtime complexity. Could you implement it using only constant space complexity?

题意:一个数组中的元素都出现了两次,只有俩数字出现了一次!!!!找出来!!!!!!

public class Solution {
    public int[] singleNumber(int[] nums) {
        int[] ret=new int[2];
        if(nums==null || nums.length<4)return nums;
        int norresult=0;
        for(int i=0;i<nums.length;i++){
            norresult^=nums[i];
        }
        ///找到1的索引位置
        int indexof1=index1(norresult);
        for(int i=0;i<nums.length;i++){
            if(is1(nums[i],indexof1)==1){
            ////一个只与是1的做异或
                ret[0]^=nums[i];
            }
        }
        ret[1]=norresult^ret[0];
        return ret;
    }
    public static int is1(int num,int index){
    ////判断第index位是不是1
        num=num>>index;
        return num&1;
    }
    public static int index1(int num){
    /////判断第几位是1 
        int index=0;
        while((num&1)==0){
            num=num>>1;
            index++;
        }
        return index;
    }
}

PS:这个可以参考single number1 的异或思想。不过此时需要分成两部分来找了。参见剑指offer。

Leetcode 260. Single Number III JAVA语言

标签:single number3

原文地址:http://fulin0532.blog.51cto.com/6233825/1908502

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!