gpt4 book ai didi

c++ - 如何在 C++ 中使用时钟()

转载 作者:IT老高 更新时间:2023-10-28 11:34:41 26 4
gpt4 key购买 nike

如何在C++中调用clock()

例如,我想测试线性搜索需要多长时间才能找到数组中的给定元素。

最佳答案

#include <iostream>
#include <cstdio>
#include <ctime>

int main() {
std::clock_t start;
double duration;

start = std::clock();

/* Your algorithm here */

duration = ( std::clock() - start ) / (double) CLOCKS_PER_SEC;

std::cout<<"printf: "<< duration <<'\n';
}

关于c++ - 如何在 C++ 中使用时钟(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3220477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com