码迷,mamicode.com
首页 > 编程语言 > 详细

递归算法输出数列的前N个数

时间:2017-06-29 17:48:36      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   show   turn   foreach   数列   message   大于   add   ret   

数列1,1,1,3,5,9,17,31,57,105……N大于3时,第N个数为前三个数之和。

 

1   for (int i = 0; i < 10; i++)
2             {
3                 listint.Add(1);
4             }
5             test3(10);
6             test3();
 1  List<int> listint = new List<int>(); 
 2         int test3(int n)
 3         {
 4             int result = 1;
 5             if (n > 3)
 6             {
 7                 result = test3(n - 1) + test3(n - 2) + test3(n - 3);
 8                 listint[n-1]=result;
 9             }
10             else
11             {
12                 result = 1;
13             }
14             
15             return result;
16         }
17 
18         void test3()
19         {
20             foreach (int a in listint)
21             {
22                 MessageBox.Show(a.ToString());
23             }
24         }

 

递归算法输出数列的前N个数

标签:style   show   turn   foreach   数列   message   大于   add   ret   

原文地址:http://www.cnblogs.com/dyfisgod/p/7094706.html

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