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

来源:互联网 发布:java调用dll实例 编辑:程序博客网 时间:2024/05/22 16:47

                          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 目录



1 0
原创粉丝点击