代码改变世界

随笔档案-2012年9月18日

选择排序

2012-09-18 08:02 by 尔, 122 阅读, 收藏,
摘要: #include #include #include #define MAX_SIZE 101#define SWAP(x, y, t) ((t) = (x), (x) = (y), (y) = (t))/*函数原型*/void sort(int [], int);int main(){ in... 阅读全文