two int integers m and n binary representations of how many digits are different

Source: Internet
Author: User

Title Description

There are 10 kinds of people in the world, one understands the binary system, one does not understand. So you know the binary representation of two int32 integers m and n, how many bits are different?
Input Example:
1999 2299
Output Example:
7

Problem analysis

In binary, the corresponding bit (bit) of the statistic two digits can be different or operation, the difference or operation result is the same as 0 differs 1. So two different or 1 of the results are the same number of digits.

    publicstaticintcount(intint b)      {          int m = a ^ b;          int0;          while(m>0)          {              m &= (m-1);              num++;          }          return num;      }  

May 7, 2015 21:57:17

two int integers m and n binary representations of how many digits are different

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.