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时就可以看到结果。
本专栏目录
所有内容的目录
原文地址:http://blog.csdn.net/zhangxiangdavaid/article/details/43701669