摘要: 神奇的排序算法 1.猴子排序 #include<iostream> using namespace std; bool isSorted(int a[], int n){ while (--n > 1) if (a[n] < a[n - 1]) return false; return true; 阅读全文
posted @ 2023-06-07 20:47 Melting_Pot 阅读(80) 评论(0) 推荐(6)