摘要: 1 //交换算法 2 3 #include "swap.h" 4 #include 5 #include 6 7 8 using namespace std; 9 #define swap_m(x,y,t) ((t)=(x),(x)=(y),(y)=(t)) // #define后面不要加 分号; 10 void swap(int x... 阅读全文
posted @ 2017-04-26 23:49 w6811645 阅读(195) 评论(0) 推荐(0) 编辑