void Swap(int *a, int *b) { int c = *a; *a = *b; *b = c; }
两个数交换
原文:http://www.cnblogs.com/liuhg/p/swap.html