# 交换两个数(不用临时变量)

{% hint style="info" %}
异或实现了交换
{% endhint %}

#### 不用临时变量怎么实现 swap(a, b)

```
void swap(int a, int b) {
    
    //int a =2, b=6;
    a = a ^ b;
    b = b ^ a;
    a = a ^ b;
    printf("a=%d, b=%d \n", a, b);
}

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hly-tech.gitbook.io/algorithm/suan-fa-ji-chu/yun-suan-fu/jiao-huan-liang-ge-shu-bu-yong-lin-shi-bian-liang.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
