I am a beginner in using Lambda expression feature in Java 8. Lambda expressions are pretty well useful in solving programs like Prime number check, factorial etc.
However can they be utilized effectively in solving problems like Fibonacci where the current value depends on sum of previous two values. I have pretty well solved prime number check problem effectively using Lambda expressions. The code for the same is given below.
boolean checkPrime=n>1 && LongStream.range(2, (long) Math.sqrt(n)).parallel().noneMatch(e->(n)%e==0);
In the above code in the noneMatch
method we are evaluating with the current value(e
) in the range. But for the Fibonacci problem, we requires previous two values.
How can we make it happen?
The simplest solution is to use a stream of
Pair
s:Due to the lack of a standard pair type, it uses a two-element array. Further, I use
.limit(92)
as we can’t evaluate more elements usinglong
values. But it’s easy to adapt toBigInteger
:That’ll run until you haven’t enough memory to represent the next value.
BTW, to get the nth element from the stream:
To get Nth fibonacci element (using reduction):
This is not going to happen with your approach
The generation of Fibonacci numbers based on the previous two numbers is based on the previous two numbers, i.e. it's a recursive algorithm, even if you implement it without recursion but in a loop.
There's other ways based on the matrix exponential so you can calculate the n'th fibonacci number without calculating the n-1 previous numbers, but for your problem (calculating the series), this doesn't make sense.
So, to answer your question in the end, namely how can I use Lambda expressions on the two previous elements?: have a list of tuples, each containing two consecutive numbers, and iterate over that, adding a new tuple every step.
If you want a non recursive implementation to find the n-th number of Fibonacci sequence you can use the formula: