c++ 计算算法运行时长
时间: 2023-11-28 16:37:11 浏览: 71
C/C++计算程序运行的时间
c计算算法运行时长可以通过使用clock函数来测量。clock函数返回从程序启动开始已经过去的时钟周期数,可以通过将结束时间减去开始时间来计算算法的运行时长。
下面是一个示例代码来演示如何使用clock函数来计算算法运行时长:
#include <iostream>
#include <ctime>
int main() {
clock_t begin, end;
begin = clock();
// 这里放置需要计算运行时长的算法代码
end = clock();
double duration = double(end - begin) / CLOCKS_PER_SEC;
std::cout << "算法运行时长:" << duration << "秒" << std::endl;
return 0;
}
阅读全文