Tagged Questions

The Fibonacci sequence is the sequence defined by F(0) = 0, F(1) = 1, F(n + 2) = F(n) + F(n + 1). The first few terms are 0, 1, 1, 2, 3, 5, 8.

learn more… | top users | synonyms

42
votes
6answers
2k views

What is it about Fibonacci numbers?

Fibonacci numbers have become a popular introduction to recursion for Computer Science students and there's a strong argument that they persist within nature. For these reasons, many of us are ...
37
votes
10answers
2k views

The inverse Fibonacci problem?

There are dozens of ways of computing F(n) for an arbitrary n, many of which have great runtime and memory usage. However, suppose I wanted to ask the opposite question: Given F(n) for n > 2, ...
29
votes
10answers
21k views

Computational complexity of Fibonacci Sequence

I understand Big-O notation, but I don't know how to calculate it for many functions. In particular, I've been trying to figure out the computational complexity of the naive version of the Fibonacci ...
26
votes
23answers
3k views

What is a good example of recursion other than generating a Fibonacci sequence?

Possible Duplicates: Real-world examples of recursion Examples of Recursive functions I see that most programming language tutorial teach recursion by using a simple example which is how ...
24
votes
15answers
4k views

Test if a number is fibonacci

I know how to make the list of the Fibonacci numbers, but i don't know how can i test if a given number belongs to the fibonacci list - one way that comes in mind is generate the list of fib. numbers ...
20
votes
35answers
4k views

Fibonacci Code Golf

Generate the Fibonacci sequence in the fewest amount of characters possible. Any language is OK, except for one that you define with one operator, f, which prints the Fibonacci numbers. Starting ...
18
votes
3answers
745 views

How many ways are there to describe the Fibonacci sequence in Perl 6?

I've been looking at the various ways of constructing lazy lists in Perl 6 and I would like to collect all of the concise ways of describing the Fibonacci sequence. I will start this off with the ...
18
votes
8answers
5k views

nth fibonacci number in sublinear time

Is there any algorithm to compute the nth fibonacci number in sub linear time?
18
votes
29answers
3k views

What's your favorite implementation of producing the Fibonacci sequence? [closed]

What's your favorite implementation of producing the Fibonacci sequence? Best, most creative, most clever, fastest, smallest, written in weirdest language, etc., etc. For those not familiar with this ...
14
votes
1answer
582 views

Why does Java regex engine throw StringIndexOutOfBoundsException on a + repetition?

I've written a regex pattern to find Fibonacci numbers (it doesn't matter why, I just did). It works wonderfully as expected (see on ideone.com): String FIBONACCI = "(?x) .{0,2} | (?: ...
13
votes
2answers
732 views

Implement fibonacci in Clojure using map/reduce

Is it possible to implement the fibonacci series in Clojure efficiently using reduce? What would the "accumulator" contain? I imagine that it will have to be lazy. It's obvious how to do it using ...
11
votes
5answers
262 views

Showing two different fibonacci functions are equivalent

I'm trying to learn exactly what it means to prove a program correct. I'm starting from scratch and getting hung up on the first steps/the introduction to the topic. In this paper on total functional ...
11
votes
2answers
689 views

Whats the point of lazy-seq in clojure?

I am looking through some example Fibonacci sequence clojure code: (def fibs (lazy-cat [1 2] (map + fibs (rest fibs)))) I generally understand what is going on, but don't get the point of ...
10
votes
3answers
305 views

How many additional function calls does fib(n) require if “LINE 3” is removed?

I just got this question on an interview and had no idea how to calculate the answer. How many additional function calls does fib(n) require if "LINE 3" is removed? The answer should be in terms on n. ...
10
votes
13answers
1k views

Why is .NET faster than C++ in this case?

Make sure you run outside of the IDE. That is key. -edit- I LOVE SLaks comment. "The amount of misinformation in these answers is staggering." :D Calm down guys. Pretty much all of you were wrong. I ...
9
votes
7answers
674 views

Fibonacci numbers, with an one-liner in Python 3?

I know there is nothing wrong with writing with proper function structure, but I would like to know how can I find nth fibonacci number with most Pythonic way with a one-line. I wrote that code, but ...
9
votes
3answers
5k views

Recursive Fibonacci

I'm having a hard time understanding why #include <iostream> using namespace std; int fib(int x) { if (x == 1) { return 1; } else { return fib(x-1)+fib(x-2); } } ...
8
votes
8answers
2k views

Why does (int)55 == 54 in C++?

So I'm learning C++. I've got my "C++ Programming Language" and "Effective C++" out and I'm running through Project Euler. Problem 1...dunzo. Problem 2...not so much. I'm working in VS2008 on a ...
8
votes
11answers
16k views

How to write the Fibonacci Sequence in Python

Updated: EDIT! I have coded the program wrongly. Instead of returning the Fibonacci numbers between a range (ie. startNumber 1, endNumber 20 should = only those numbers between 1 & 20), I have ...
7
votes
2answers
242 views

binary heap vs binomial heap vs fibonacci heap, regarding performance for a priority queue

Could someone please explain me how should I decide whether to use one or another heap implementation, among the ones mentioned in the title? I would like an answer to guide me on choosing the ...
7
votes
4answers
1k views

Why is my recursive function so slow in R?

The following takes about 30 seconds to run whereas I would expect it to be nearly instant. Is there a problem with my code? x <- fibonacci(35); fibonacci <- function(seq) { if (seq == 1) ...
7
votes
2answers
440 views

Calculating Fibonacci Numbers in C++ code

Hey everyone. I am a first year engineering student, and I'm brand-new to C++ code, and I find it very annoying and very confusing. About a month ago, I had no idea C++ even existed. :P So what I'm ...
7
votes
3answers
2k views

Generating Fibonacci numbers in Haskell?

In Haskell, how can I generate Fibonacci numbers based on the property that the nth Fibonacci number is equal to the (n-2)th Fibonacci number plus the (n-1)th Fibonacci number? I've seen this: fibs ...
6
votes
6answers
108 views

Project Euler #2 Infinity?

I am trying to solve Euler's Project #2 and I keep getting the answer as "Infinity" or "NaN" (Not a number) I tried changing the type of number to a int (originally Double), but that didn't fix ...
6
votes
2answers
136 views

How to fix my Fibonacci stream in Scala

I defined a function to return Fibonacci stream as follows: def fib:Stream[Int] = { Stream.cons(1, Stream.cons(2, (fib zip fib.tail) map {case (x, y) => println("%s + %s".format(x, y)); ...
6
votes
5answers
203 views

What is wrong with this Fibonacci seq C++ function?

Stumbled upon this example of bad C++ code in a blog post, without any explanation as to why it is considered "bad". I have my own ideas, but would like to hear experienced C++ devs on this. unsigned ...
6
votes
5answers
712 views

Algorithm for k-Fibonacci

We all know fibonacci series, when k = 2. I.e.: 1,1,2,3,5,8,13 But this is the 2-fibonacci. Like this, I can count the third-fibonacci: 1,1,2,4,7,13,24 And the 4-fibonacci: 1,1,2,4,8,15,29 ...
6
votes
9answers
888 views

fibonacci numbers, why does this recurring function work?

I'm going through a programming book and one of the examples is about fibonacci numbers, and how a recurring function finds the fibonacci number for the nth one along. The code looks like this: Int ...
5
votes
4answers
418 views

Why is the complexity of computing the Fibonacci series 2^n and not n^2?

I am trying to find complexity of Fibonacci series using recursion tree. and concluded height of tree = O(n) worst case cost of each level = cn hence complexity should be = n*n=n^2 How come it is 2^n. ...
5
votes
4answers
213 views

tail recursion and fibonacci

I was looking at this site: http://rosettacode.org/wiki/Fibonacci_sequence#JavaScript and saw this program: function fib(n) { return function(n,a,b) { return n>0 ? ...
5
votes
5answers
463 views

Can a Fibonacci function be written to execute in O(1) time?

So, we see a lot of fibonacci questions. I, personally, hate them. A lot. More than a lot. I thought it'd be neat if maybe we could make it impossible for anyone to ever use it as an interview ...
5
votes
15answers
844 views

How to generate Fibonacci faster

I am a CSE student and preparing myself for programming contest.Now I am working on Fibonacci series. I have a input file of size about some Kilo bytes containing positive integers. Input formate ...
5
votes
9answers
2k views

Java Program Fibonacci Sequence

I am writing a "simple" program to determine the Nth number in the Fibonacci sequence. Ex: the 7th number in the sequence is: 13. I have finished writing the program, it works, but beginning at the ...
4
votes
3answers
149 views

How do I write this Clojure function so that it doesn't blow out the stack?

I'm new to Clojure and I think my approach to writing code so far is not in line with the "Way of Clojure". At least, I keep writing functions that keep leading to StackOverflow errors with large ...
4
votes
3answers
299 views

How can I add certain values that were produced in a 'while' loop using Python

I was solving a Project Euler problem that goes as follows: By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms." So ...
4
votes
4answers
193 views

Help cleaning up clojure function

Coming from imperative programming languages, I am trying to wrap my head around Clojure in hopes of using it for its multi-threading capability. I have been spending some time on 4Clojure.com, as ...
4
votes
7answers
336 views

Fibonacci One-Liner

I'm trying to solve questions from Project Euler in Ruby one-liners, and I'm curious if there's a more elegant solution for question two: Each new term in the Fibonacci sequence is generated by ...
4
votes
3answers
788 views

Fibonacci Sequence in VB.net using loop

Please could you help me with displaying the first 10 Fibonacci numbers. My code displays the following result: 1, 2, 3, 5, 8, 13, 21, 34, 55 and I need it to also display the first two Febonacci ...
4
votes
4answers
859 views

Tail call optimization for fibonacci function in java

I was studying about Tail call recursion and came across some documentation that mentioned. Sun Java doesn't implement tail call optimization. I wrote following code to calculate fibonacci number in ...
4
votes
2answers
117 views

Scalas (a,b).zipped (or Tuple2.zipped) notion using streams/infinite lists

here is what I thought would be a correct and useful definition of fibonacci nums in scala: lazy val fibs:Stream[Int] = 0 #:: 1 #:: (fibs,fibs.tail).zipped.map(_+_) However, I get the following ...
4
votes
3answers
346 views

Performance of Fibonacci

f[0] = 0; f[1] = 1; f[x_] := f[x-1] + f[x-2] This function is running slow in Mathematica and I need to increase the speed. I have to use functional programming and recursion. I'm not sure why ...
4
votes
5answers
480 views

Is there something wrong with this python code, why does it run so slow compared to ruby?

I was interested in comparing ruby speed vs python so I took the simplest recursive calculation, namely print the fibonacci sequance. This is the python code #!/usr/bin/python2.7 ...
4
votes
5answers
899 views

Generating Fibonacci series in F#

I'm just starting to learn F# using VS2010 and below is my first attempt at generating the Fibonacci series. What I'm trying to do is to build a list of all numbers less than 400. let fabList = ...
4
votes
2answers
493 views

Fibonacci Sequence Algorithm

I am attempting to find the first number in the fibbonacci sequence to contain N digits (N being somewhere in the range of 500 and 2000). I attempt to do this with the following code: BigInteger num ...
4
votes
2answers
979 views

Python func_dict used to memoize; other useful tricks?

A Python function object has an attribute dictionary called func_dict which is visible from outside the function and is mutable, but which is not modified when the function is called. (I learned this ...
3
votes
1answer
103 views

OCaml creating a list of Fibonacci numbers

I have a function that generates Fibonacci numbers: let rec fib n = match n with | (0 | 1) -> 1 | x when x > 0 -> (fib (x-2) + fib (x-1)) | _ -> raise (Invalid_argument ...
3
votes
2answers
292 views

Fibonacci Search

Somebody please explain me the fibonacci search algorithm. I have tried numerous resources around and searched a lot, but the algorithm is still unclear. Most of the resources described it in link ...
3
votes
3answers
104 views

Ratio of leaves to total nodes in a Fibonacci call stack

If you were to look at a recursive implementation of calculating the nth Fibonacci number (root 100, children 99 and 98, grandchildren 98, 97, 97, and 96, etc. etc.), roughly what would be the ratio ...
3
votes
2answers
134 views

In Excel, how to round to nearest fibonacci number

In Excel, I would like to round to the nearest fibonacci number. I tried something like (sorry with a french Excel): RECHERCHEH(C7;FIBO;1;VRAI) -- HLOOKUP(C7, FIBO, 1, TRUE) where FIBO is a named ...
3
votes
5answers
177 views

Python variable assignment question

a,b = 0,1 while b < 50: print(b) a = b b = a+b outputs: 1 2 4 8 16 32 wheras: a,b = 0,1 while b < 50: print(b) a,b = b, a+b outputs (correct fibonacci sequence): ...

1 2 3 4