<script type="text/javascript"></script>
1.如果只是要计算程序运行的时间,不需要那么复杂。
<windows.h> 中的 GetTickCount() 就是干这个的。
TimeStart=GetTickCount();
.......
TimeEnd=GetTickCount();
TimeUsed=TimeEnd-TimeStart;
2. #include<stdio.h>
#include<time.h>
#include<conio.h>
int main()
{
time_t stime , etime ;
time( &stime ); /* get start time */
getch(); /* Access */
time( &etime ); /* get end time */
printf( "%ld\n" , etime - stime );
getch();
return 0;
}
3. class CTimer
{
public:
CTimer() {QueryPerformanceFrequency(&m_Frequency); Start();}
void Start() {QueryPerformanceCounter(&m_StartCount);}
double End() {LARGE_INTEGER CurrentCount;QueryPerformanceCounter(&CurrentCount);return double(CurrentCount.LowPart - m_StartCount.LowPart) / (double)m_Frequency.LowPart;}
private:
LARGE_INTEGER m_Frequency;
LARGE_INTEGER m_StartCount;
};
4. VC的话有profile,在链接属性页勾选profile项,然后profile(在编译菜单下),各个函数时间都出来了
5. #include <iostream>
#include <ctime>
using namespace std;
int max(int x,int y)
{
return (x>y)?x:y;
}
int main()
{
const double begin=(double)clock()/CLK_TCK;
for(int i=10000;i>0;i--)
for(int j=10000;j>0;j--)
max(i,j);
const double end=(double)clock()/CLK_TCK;
cout <<begin<<" "<<end;
return 0;
}
6.要最精确的有
LARGE_INTEGER limtp;
QueryPerformanceFrequency(&limtp);//获得当前的计数频率,即每秒进行多少次计数
QueryPerformanceCounter(&limtp);//获取当前计数次数
基于cpu级的
时间是
(计数获取计数次数 - 开始获取计数次数)/(用QueryPerformanceFrequency获取的limtp.QuadPart)
下面列出简单的例子
#include <ctime> //计时用的头文件
#include <iostream>
using namespace std;
int main()
{
time_t start,end,time; /*注意计时所用的变量名称*/
/*程序开始执行,开始计时*/
start=clock();
/*程序执行过程……*/
for(int i=0;i<=100000;i++) cout << i << ' ';
cout << endl;
/*程序结束执行,结束计时*/
end=clock();
time=end-start;//这里的时间是计算机内部时间
cout << endl << ""time:" << time << endl;
system("pause");
return 0;
}
其它:
Include head file time.h, though it's a C include file, C++ certainly can use it.
Under C++, you can include <ctime> instead of <time.h>
_____________________________________________________
time.h
@函数名称: localtime
函数原型: struct tm *localtime(const time_t *timer)
函数功能: 返回一个以tm结构表达的机器时间信息
函数返回: 以tm结构表达的时间,结构tm定义如下:
struct tm{
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
};
参数说明: timer-使用time()函数获得的机器时间
所属文件: <time.h>
#include <time.h>
#include <stdio.h>
#include <dos.h>
int main()
{
time_t timer;
struct tm *tblock;
timer=time(NULL);
tblock=localtime(&timer);
printf("Local time is: %s",asctime(tblock));
return 0;
}
@函数名称: asctime
函数原型: char* asctime(struct tm * ptr)
函数功能: 得到机器时间(日期时间转换为ASCII码)
函数返回: 返回的时间字符串格式为:星期,月,日,小时:分:秒,年
参数说明: 结构指针ptr应通过函数localtime()和gmtime()得到
所属文件: <time.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
int main()
{
struct tm t;
char str[80];
t.tm_sec=1;
t.tm_min=3;
t.tm_hour=7;
t.tm_mday=22;
t.tm_mon=11;
t.tm_year=56;
t.tm_wday=4;
t.tm_yday=0;
t.tm_isdst=0;
strcpy(str,asctime(&t));
printf("%s",str);
return 0;
}
@函数名称: ctime
函数原型: char *ctime(long time)
函数功能: 得到日历时间
函数返回: 返回字符串格式:星期,月,日,小时:分:秒,年
参数说明: time-该参数应由函数time获得
所属文件: <time.h>
#include <stdio.h>
#include <time.h>
int main()
{
time_t t;
time(&t);
printf("Today's date and time: %s",ctime(&t));
return 0;
}
@函数名称: difftime
函数原型: double difftime(time_t time2, time_t time1)
函数功能: 得到两次机器时间差,单位为秒
函数返回: 时间差,单位为秒
参数说明: time1-机器时间一,time2-机器时间二.该参数应使用time函数获得
所属文件: <time.h>
#include <time.h>
#include <stdio.h>
#include <dos.h>
#include <conio.h>
int main()
{
time_t first, second;
clrscr();
first=time(NULL);
delay(2000);
second=time(NULL);
printf("The difference is: %f seconds",difftime(second,first));
getch();
return 0;
}
@函数名称: gmtime
函数原型: struct tm *gmtime(time_t *time)
函数功能: 得到以结构tm表示的时间信息
函数返回: 以结构tm表示的时间信息指针
参数说明: time-用函数time()得到的时间信息
所属文件: <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <dos.h>
char *tzstr="TZ=PST8PDT";
int main()
{
time_t t;
struct tm *gmt, *area;
putenv(tzstr);
tzset();
t=time(NULL);
area=localtime(&t);
printf("Local time is:%s", asctime(area));
gmt=gmtime(&t);
printf("GMT is:%s", asctime(gmt));
return 0;
}
@函数名称: time
函数原型: time_t time(time_t *timer)
函数功能: 得到机器的日历时间或者设置日历时间
函数返回: 机器日历时间
参数说明: timer=NULL时得到机器日历时间,timer=时间数值时,用于设置日历时间,time_t是一个long类型
所属文件: <time.h>
#include <time.h>
#include <stdio.h>
#include <dos.h>
int main()
{
time_t t;
t=time();
printf("The number of seconds since January 1,1970 is %ld",t);
return 0;
}
@函数名称: tzset
函数原型: void tzset(void)
函数功能: UNIX兼容函数,用于得到时区,在DOS环境下无用途
函数返回:
参数说明:
所属文件: <time.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
time_t td;
putenv("TZ=PST8PDT");
tzset();
time(&td);
printf("Current time=%s",asctime(localtime(&td)));
return 0;
}
分享到:
相关推荐
在runtime.h里有个计算程序运行时间的代码,精确到毫秒
### C++中计算程序运行时间的三种方式 在C++编程中,经常需要评估或比较算法的效率,其中一种常用的方式就是测量程序或特定代码段的执行时间。本文将详细介绍三种常用的计算程序运行时间的方法,并给出相应的源码...
在C/C++编程中,精确地测量程序运行时间是一项重要的任务,这有助于优化代码性能、调试和理解程序的效率。本文将深入探讨如何利用C/C++实现程序运行时间的精确测量,精度可达毫秒级别。 首先,我们有两种常用的方法...
### C++ 获取当前时间和计算程序运行时间的方法 在C++编程中,经常需要获取当前时间或者测量程序的执行时间。这些需求在各种场景下都非常常见,例如:性能测试、调试、记录日志等。本文将详细介绍如何在C++中实现这...
`时间.exe`文件是编译后的可执行程序,可以在Dev-C++或其他C++编译器环境下运行,无需源码即可查看结果。 总的来说,这个项目提供了一个基础的C++时间获取教程,对于理解如何在C++中操作时间和日期非常有用。通过...
### C++中求程序运行时间 #### 知识点概览 在C++编程中,经常需要计算程序的运行时间,以评估算法效率或者进行性能分析。本文将详细介绍如何使用`time.h`库中的`time()`函数来测量程序运行的时间,并通过一个简单的...
本文将深入探讨C++中的时间函数集,主要包括用于计算程序运行时间的函数以及获取当前时间的函数。 1. **时间类型和对象** - `time_t`: 这是一个基本的时间类型,通常用于存储从纪元(通常是1970年1月1日00:00:00 ...
在C++编程中,要实现一个程序来执行另一个可执行文件(例如A.exe),并同时监控其运行时间和内存使用情况,可以使用Windows API中的几个关键函数。以下是一个详细解释的示例代码,它实现了题目中提到的需求: 首先...
标题“c++_shixian.rar_程序运行时间_运行时间”暗示了这是一个关于如何在C++中度量程序运行时间的示例或工具。 在C++中,有多种方法可以测量程序运行时间,其中一种常见的方法是使用标准库中的`<chrono>`头文件。...
在C++或VC++平台上,通过使用电脑主频与电脑时钟来检测程序运行时间是一项非常实用的技术。本文将详细介绍如何实现这一功能,并提供具体的源代码示例。 ### 一、概念简介 #### 1.1 电脑主频 电脑主频(Clock Speed...
首先,要计算程序运行时间,我们通常会用到`chrono`库,这是C++11引入的一个时间处理库。`chrono`库提供了多种时间点和时间间隔类型,如`system_clock`、`high_resolution_clock`和`duration`等。我们可以用`high_...
在深入探讨《C++程序设计谭浩强04版》这一资源时,我们不仅能够触及C++语言的基础,还能了解到其在近年来计算机科学领域中的广泛应用与重要性。C++,作为一门面向对象的编程语言,自诞生以来便以其高效、灵活的特性...
1. **简单C++程序设计**:通过实现特定功能的程序,如使用do-while或for语句计算1到10的和,来锻炼学生的编程逻辑和理解力。 2. **输入/输出操作**:使用`cin`和`cout`进行基本的输入输出操作,是C++程序中常见的I/...
【标题】"C和C++程序设计学习与实验系统"是一个综合性的学习资源,专为初学者设计,旨在帮助他们入门并深入理解C和C++编程语言。这个系统可能包含了全面的教学材料,实例代码,练习题,以及可能的实验环境,以实践...
本文是关于《C++程序设计语言特别版》一书的内容介绍与评价。本书由C++语言的发明者贝尔实验室的Bjarne Stroustrup教授撰写,是一本权威的C++教程。 本书内容涵盖了C++语言的全部主要特征和标准库,为读者展示了C++...
在编程领域,了解和计算程序运行时间是优化代码性能的关键步骤。本文将深入探讨在C++环境下,如何通过多种方法来测量程序运行时间,以帮助开发者优化程序效率。以下是一些核心知识点: 1. **高精度计时器**: C++...
### C++程序设计实践教程知识点解析 #### 一、C++程序设计基础概念 - **机器语言**: 计算机可以直接识别和执行的指令集,由机器指令和数据组成的二进制文档,难以理解且编程繁琐。 - **汇编语言**: 符号化的语言,...
fft程序 c++实现 测试不同长度数据运行时间