在Linux中,可以使用clock_gettime
函數來獲取系統運行時間。以下是一個示例代碼,用于計算程序執行時間:
#include <stdio.h>
#include <time.h>
int main() {
struct timespec start, end;
double elapsed_time;
clock_gettime(CLOCK_MONOTONIC, &start);
// 在這里執行需要測試的代碼
clock_gettime(CLOCK_MONOTONIC, &end);
elapsed_time = (end.tv_sec - start.tv_sec) + (end.tv_nsec - start.tv_nsec) / 1e9;
printf("Elapsed time: %f seconds\n", elapsed_time);
return 0;
}
在這個示例中,我們使用clock_gettime
函數來獲取程序開始和結束時的時間戳,并計算時間差來得到程序執行時間。可以將需要測試的代碼放在示例中的注釋部分。