C++ 实现#pragma once
void swap(int& a, int& b)
{
if (a != b) {
a ^= b;
b ^= a;
a ^= b
2021-09-07