I was asked the following question in an interview:
Is there any way in which Fibonacci series can be generated using only 1 variable ?
I didn't know what to answer. What should I have said?
|
I was asked the following question in an interview:
I didn't know what to answer. What should I have said? |
|||||||
|
|
Yes, you can used the closed-form expression:
where
You can calculate the expression using a |
|||||||||||||||
|
|
Up to a point, yes (though in C, you could convert it to Java - it would look much uglier).
which produces:
:-) The real question, of course, is: Why would you want to? |
||||
|
Sure, using recursion:
|
|||||||||||||||
|
|
Yes, but you still need to remember 2 values. You could take a 64-bit variable and use it as 2 32-bit vars. |
|||||||||||||||||
|
|
The answer is "yes", but maybe you could be more specific. The first example I could think of, using double recursion (that leads to an exponential complexity, not recommended):
Assuming a >= 0 (you could add a check for that). (Edit - used the wrong convention of F(0) undefined, F(1) = 1) |
||||
|
|
|
After the initial
where
|
|||
|
|
|
You can always do something like this:
This prints (as seen on ideone.com):
This uses only one explicit variable, and it's essentially a linear non-recursive algorithm. It needs to be said that this is an abuse of |
|||||||||||
|
|
So this is evil, but:
My machine here starts to fall over around the 38th Fibonacci number. |
|||
|
|
|
Here's an example in C#. Shows the first 100 terms. The ratio between terms in the Fibonacci approaches the golden ratio (1.618033...), so a single variable approach simply requires a multiplication by a constant for each term. Yay math!
|
|||||
|
public static void main (String args[]) {
} } Here is the java code of Fibonacci series using one variable. |
|||
|
|