In-depth understanding of computer system second exercise answers CSAPP 2.10, csapp2.10

Source: Internet
Author: User

In-depth understanding of computer system second exercise answers CSAPP 2.10, csapp2.10

For any bitwise vector a, there is a ^ a = 0. Consider the following program:

1 void inplace_swap(int *x, int *y)2 {3     *y = *x ^ *y;4     *x = *x ^ *y;5     *y = *x ^ *y;6 }

Assume that x and y point to a and B respectively. Complete the following table:

Procedure * X * Y
Initial A B
Step 1 A A ^ B
Step 2 A ^ (a ^ B) A ^ B
Step 3 A ^ (a ^ B) A ^ (a ^ B)

Because the exclusive or operation satisfies the exchange rate and combination rate, and a ^ 0 = 0, a ^ = ~ A. So there are

Procedure * X * Y
Initial A B
Step 1 A A ^ B
Step 2 B A ^ B
Step 3 B A

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.