[Leetcode] Single number III

Source: Internet
Author: User

Given An array of numbers nums, in which exactly, elements appear only once and all the other elements appear exactly t Wice. Find the elements that appear only once.

For example:

Given nums = [1, 2, 1, 3, 2, 5] , return [3, 5] .

Note:

    1. The order of the result is not important. The above example, is [5, 3] also correct.
    2. Your algorithm should run in linear runtime complexity. Could implement it using only constant space complexity?
Thinking of solving problems

Bit operations. The difference from the single number is that the first one is grouped according to whether or not either of the elements or the result is 1, and then the single number in each group is found separately.

Implementation code

Java:

//Runtime:2 MS Public classSolution { Public int[]Singlenumber(int[] nums) {intXOR =0; for(intNum:nums) {xor ^= num; }intbit = XOR & (~ (XOR-1));intSingle[] =New int[2]; for(intNum:nums) {if(num & bit)! =0) {single[0] ^= num; }Else{single[1] ^= num; }        }returnSingle }}

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

[Leetcode] Single number III

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.