摘要: ## **神奇的排序算法** ## **1.猴子排序** ```cpp #include using namespace std; bool isSorted(int a[], int n){ while (--n > 1) if (a[n] using namespace std; #define 阅读全文
posted @ 2023-06-07 20:46 Melting_Pot 阅读(28) 评论(0) 推荐(6) 编辑