摘要: #include //选择排序void SelectSort(int *p, const int length){ if (p == NULL) { return; } for (int i = 0; i p[j]) { ... 阅读全文
posted @ 2013-10-08 14:11 奥雷连诺 阅读(295) 评论(0) 推荐(0)