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

Posted 历史的尘埃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归算法输出数列的前N个数相关的知识,希望对你有一定的参考价值。

数列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个数的主要内容,如果未能解决你的问题,请参考以下文章

斐波那契数列的两种实现(递归和非递归)

编写一个C程序,用于打印斐波那契数列的前10个数

编写一递归函数求斐波那契数列的前40项

LintCode Python 入门级题目 斐波纳契数列

c语言代码编程题汇总:输入一个整数n,输出斐波纳猰数列,采用的是递归算法——源代码

学 Python 怎能不知 yield?