Using the exclusive or operation to implement the interchange of two variables

Source: Internet
Author: User

Bitwise exclusive or operation can realize two variables worth swap without introducing temporary variables.

Int main () {int A = 10; int B = 12; cout <"A =" <A <"; "<" B = "<B <Endl; A = a ^ B; // XOR operation B = a ^ B; A = B ^; cout <"A =" <A <";" <"B =" <B <Endl ;}

We can see from the above that the exclusive or operation can be used as the simplest encryption algorithm and belongs to the symmetric encryption algorithm. Therefore, we can also know that the ciphertext obtained by this encryption algorithm is similar to that obtained by plain text, and can be easily cracked. The encryption and decryption process uses the same application.

Using the exclusive or operation to implement the interchange of two variables

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.