怎么得到执行复杂的算法时需要的时间量
摘要:
第一种方法:dwOldTime = GetTickCount();DoSomething();dwTimeElapsed = GetTickCount() – dwOldTime;第二种方法:class CStopwatch {public: CStopwatch() { QueryPerformanceFrequency(&m_liPerfFreq); Start(); } void Start() { QueryPerformanceCounter(&m_liPerfStart); } __int64 Now() const... 阅读全文
posted @ 2011-07-04 16:55 hgy413 阅读(245) 评论(0) 推荐(0) 编辑