摘要: Reverse反转算法 1 #include 2 3 using namespace std; 4 //交换的函数 5 void replaced(int &a,int &b){ 6 int t = a; 7 a = b; 8 b = t; 9 }10 //反转11 vo... 阅读全文
posted @ 2015-08-02 19:27 何杨 阅读(763) 评论(0) 推荐(0) 编辑