Leetcode Single number C + + ideas for solving problems

Source: Internet
Author: User

Title Description:

Given an array of integers, every element appears twice except for one. Find the single one.

Note:
Your algorithm should has a linear runtime complexity. Could you implement it without using extra memory?

Requires linear complexity and no additional storage space.

I did not think about it, and learned the other people in the discuss method.

Initialize an int num=0, and then use this num and each number in the array to be different or over again, because the two same number XOR will become 0, so the traversal to the end is 0 and that individual number XOR, the result is that individual number, notice that 0 and 0 xor or 0, so initialize to 0.

The code is as follows:

int singlenumber (intint  n) {    int0;      for (int0; i < n; i++)         ^=a[i];     return num;}

Leetcode Single number C + + ideas for solving problems

Related Article

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.