【算法】代码运行时间的三种测量方法
摘要:
一,返回单位为毫秒#include<windows.h>DWORD dwStart = GetTickCount();// 测试代码DWORD dwTime = GetTickCount() - dwStart;二,返回时间为秒#include<time.h>unsigned long start,stop;start=time(NULL); //取值为秒//你的程序stop=time(NULL);printf("运行时间:%ld",stop-start);三,精确计时法QueryPerformanceCounter()这个函数返回高精确度性能计数器 阅读全文
posted @ 2012-05-07 23:23 小田的专栏 阅读(874) 评论(0) 推荐(0) 编辑