#include <ctime> static clock_t Start,Finish; Start=clock(); fun(); Finish = clock();
double time_second=double(Finish-Start)/CLOCKS_PER_SEC; printf(fun()运行时间:%fs",time_second);
用于测试一个函数的运行时间。
2023-10-09 11:31:28
#include <ctime> static clock_t Start,Finish; Start=clock(); fun(); Finish = clock();
double time_second=double(Finish-Start)/CLOCKS_PER_SEC; printf(fun()运行时间:%fs",time_second);
用于测试一个函数的运行时间。