码迷,mamicode.com
首页 > 其他好文 > 详细

递归小题中的空间换时间思想

时间:2014-07-22 23:10:13      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   io   

题目: 如数: 1  1  2  3   5   8   13   21  34  55 ......

          序号: 0  1  2  3   4   5   6     7    8    9 ......

   由用户输入序号,输出对应的数值。

 

效果:

mamicode.com,码迷

mamicode.com,码迷

 

实现代码:

mamicode.com,码迷
#include <stdio.h>

int bian(int num);
//static int shu[100]={1,1};

int main()
{
    int num;
    while ( printf("请输入编号数:"), scanf("%d",&num)==1 )
    {
        printf("序号%d的数字:%d\n",num, bian(num));
    }
    return 0;
}


/*重复计算了太多步骤,当序号较大时耗时太多*/
/* int bian( int num ) { if (num <= 2) { return 1; } else { return bian(num-1)+bian(num-2); } return 0; } */
/*优化后,将计算过的数值保存起来,用空间换时间的思想*/ int bian( int num ) { static int shu[100]={1,1};//注意static if (!shu[num]) { shu[num]= bian(num-1)+bian(num-2); return shu[num]; } else { return shu[num]; } return 0; }
mamicode.com,码迷

小结:第一次遇到空间换时间的小例子!

递归小题中的空间换时间思想,码迷,mamicode.com

递归小题中的空间换时间思想

标签:style   blog   http   java   color   io   

原文地址:http://www.cnblogs.com/love--wenxing/p/3700308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!