#include <Windows.h>
LARGE_INTEGER freq,start,end;
QueryPerformanceFrequency(&freq);
QueryPerformanceCounter(&start);
QueryPerformanceCounter(&end);
outfile<<"运行时间:"<<(end.QuadPart-start.QuadPart)*1.0/freq.QuadPart<<endl;
#include <Windows.h>
LARGE_INTEGER freq,start,end;
QueryPerformanceFrequency(&freq);
QueryPerformanceCounter(&start);
QueryPerformanceCounter(&end);
outfile<<"运行时间:"<<(end.QuadPart-start.QuadPart)*1.0/freq.QuadPart<<endl;