136 single number (for unique numbers medium)

Source: Internet
Author: User

The title means: an int array with one number appearing once and the other number appearing two times to find this unique number

Knowledge Popularization: ~: Non-arithmetic, monocular operator 1 is 0,0 to 1;

&: With arithmetic, all 1 is 1, otherwise 0

|: Or operation, all 0 is 0, otherwise 1

^: XOR operation, same as 0, different 1

Idea: The elements in the array are different or operation, then only 0 and the unique number, different or get the unique number

1 classSolution {2  Public:3     intSinglenumber (vector<int>&nums) {4         intres=0;5          for(intI=0; I<nums.size (); + +i) {6res^=Nums[i];7         }8         returnRes;9     }Ten};

Time complexity: O (N)

136 single number (for unique numbers medium)

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.