Follow

Translate

Tuesday, March 15, 2016

FIBONACCI(FIB, N)

FIBONACCI(FIB, N)
This procedure calculates FN and returns the value in the first parameter FIB.


1.  If N = 0 or N = 1, then : Set FIB : = N, and return.

2. Call FIBONACCI(FIBA, N-2).

3. Call FIBONACCI(FIBB, N-1).

4.  Set  FIB : = FIBA + FIBB.

5.  Return.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • COUNT(INFO, LINK, START, NUM) Procedure: COUNT(INFO, LINK, START, NUM) 1.  Set NUM : = 0.   [Initialize Counter] 2.  Call Algorithm Traversing a Linked List, Replace the processing Step by: Set NUM : = NUM +1. 3.  Retur… Read More
  • Traversing a linked List Algorithm: (Traversing a linked List) Let LIST be a linked list in memory. This algorithm traverse LIST, applying an operation PROCESS to each element of LIST. The variable PTR points to the node currently being processe… Read More
  • Huffman's Algorithm Huffman's Algorithm:  Suppose w1 and w2 are two minimum weights among the n given weights w1, w2,..................,wn.Find a tree T Prime which gives a solution for the n - 1 weights       w1 + w2,… Read More
  • Procedure: COUNT(INFO, LINK, START, NUM) Procedure: COUNT(INFO, LINK, START, NUM) 1.  Set NUM : = 0 .    [Initializes Counter]    2. Set PTR : = START.  [Initializes Pointer]  3.  Repeat Steps 4 and 5 while PTR != N… Read More
  • Procedure: PRINT(INFO, LINK, START) Procedure: PRINT(INFO, LINK, START) This procedure prints the information at each node of the list. 1.  Set PTR : = START .    2.  Repeat Steps 3 and 4 while PTR != NULL. 3.  Write… Read More

0 comments:

Post a Comment