排序1,2......n的无序数组,时间复杂度为o(n),空间复杂度为o(1)
摘要:
#include "stdafx.h" #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int a[] = { 10, 6, 9, 5, 2, 8, 4, 7, 1, 3 }; int len = sizeof(a) / sizeof(int); int temp; fo... 阅读全文
posted @ 2016-04-26 15:56 !!-阳光-!! 阅读(454) 评论(0) 推荐(0) 编辑