2024年9月13日

测量算法的运行时间

摘要: #include <stdio.h> #include <time.h> int F(int x); int main() { int x, y; clock_t t1, t2; double t; scanf("%d", &x); t1 = clock(); y = F(x); t2 = cloc 阅读全文

posted @ 2024-09-13 11:33 swj2529411658 阅读(13) 评论(0) 推荐(0) 编辑

导航