C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

再帰を使用してフィボナッチ数を見つけるC++プログラム


以下は、再帰を使用したフィボナッチ数列の例です。

#include <iostream>
using namespace std;
int fib(int x) {
   if((x==1)||(x==0)) {
      return(x);
   }else {
      return(fib(x-1)+fib(x-2));
   }
}
int main() {
   int x , i=0;
   cout << "Enter the number of terms of series : ";
   cin >> x;
   cout << "\nFibonnaci Series : ";
   while(i < x) {
      cout << " " << fib(i);
      i++;
   }
   return 0;
}

出力

Enter the number of terms of series : 15
Fibonnaci Series : 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

上記のプログラムでは、実際のコードは次のように関数「fib」に存在します-

if((x==1)||(x==0)) {
   return(x);
}else {
   return(fib(x-1)+fib(x-2));
}
>

main()関数では、ユーザーがいくつかの用語を入力し、fib()が呼び出されます。フィボナッチ数列は次のように印刷されます。

cout << "Enter the number of terms of series : ";
cin >> x;
cout << "\nFibonnaci Series : ";
while(i < x) {
   cout << " " << fib(i);
   i++;
}

  1. 再帰を使用してフィボナッチ数列を見つけるPythonプログラム

    再帰の方法を使用してフィボナッチ数列を見つける必要がある場合、パラメータとして値をとる「fibonacci_recursion」という名前の方法が定義されます。入力のサイズを小さくすることで何度も呼び出されます。 以下は同じもののデモンストレーションです: 例 def fibonacci_recursion(my_val): if my_val <= 1: return my_val else: return(fibonacci_recursion(my_val-1) + fibonacci_recursion(my_val-2)) num_term

  2. 再帰を使用せずにフィボナッチ数列を見つけるPythonプログラム

    再帰手法を使用せずにフィボナッチ数列を検索する必要がある場合は、ユーザーから入力を取得し、「while」ループを使用してシーケンス内の数値を取得します。 例 以下は同じのデモンストレーションです- first_num = int(input("Enter the first number of the fibonacci series... ")) second_num = int(input("Enter the second number of the fibonacci series... ")) num_of_terms = int(input