学会思考
刻意练习
摘要: //直接插入排序函数模板 template void insertionSort(T a[], int n) { int i, ; T temp; for (int i = 1; i 0 && temp void mySwap(T &x, T &y) { T temp = x; x = y; y = temp; } template v... 阅读全文
posted @ 2017-03-16 00:08 Worty 阅读(211) 评论(0) 推荐(0)