2021年8月20日
摘要: 使用了两种错排问题算法,并对其进行了时间分析。 #include <iostream> #include <ctime> using namespace std; int power(int a, int b) { int sum = a; while (b > 1) { sum *= a; --b 阅读全文
posted @ 2021-08-20 19:26 学群 阅读(251) 评论(0) 推荐(0)