您的位置:首页 > 编程语言 > C语言/C++

C++拾遗--模板元编程

2015-02-19 15:15 183 查看
C++拾遗--模板元编程

前言

模板元是用于递归加速的,把运行期的函数调用变到编译期进行代码展开,类似于内联函数。下面看一个实例:斐波那契数列第n项求解。

模板元编程

#include <iostream>
#include <ctime>
using namespace std;
//递归法
int fib(int n)
{
	if (n < 0)
		return 0;
	if (n == 1 || n == 2)
		return 1;
	return fib(n - 1) + fib(n - 2);
}
//模板元
template<int N>
struct Data
{
	enum{ res = Data<N-1>::res + Data<N-2>::res };
};
template<>
struct Data<1>
{
	enum{ res = 1 };
};
template<>
struct Data<2>
{
	enum{ res = 1 };
};
int main()
{
	cout << "******模板元编程***by David***" << endl;
	time_t start, end;
	start = clock();
	cout << fib(40) << endl;
	end = clock();
	cout << "递归法耗时" << end - start << "ms" << endl;
	start = clock();
	cout << Data<40>::res << endl;
	end = clock();
	cout << "模板元法耗时" << end - start << "ms" << endl;
	cin.get();
	return 0;
}
运行



总结:

递归法耗时较久。模板元法的运行时间是有问题的,在VS上把鼠标移到Data<40>::res时就可以看到结果。

本专栏目录

C++拾遗 目录

所有内容的目录

CCPP Blog 目录
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: