Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8115905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T03:37:06+00:00 2026-06-06T03:37:06+00:00

I was just going through the iterative version of fibonacci series algorithm. I found

  • 0

I was just going through the iterative version of fibonacci series algorithm. I found this following code

int Fibonacci(int n)
{
   int f1 = 0;
   int f2 = 1;
   int fn;
   for ( int i = 2; i < n; i++ )
   {
      fn = f1 + f2;
      f1 = f2;
      f2 = fn;
   }
}  

A silly question just raised in my mind. The function above adds two previous numbers and returns the third one and then get variables ready for the next iteration. What if it would be something like this. “Return a number of series which is the sum of previous three numbers” how we can change the above code to find such a number.u

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T03:37:09+00:00Added an answer on June 6, 2026 at 3:37 am

    As a hint, notice that the above algorithm works by “cycling” the numbers through some variables. In the above code, at each point you are storing

     F_0    F_1
      a      b
    

    You then “shift” them over by one step in the loop:

     F_1    F_2
      a      b
    

    You then “shift” them again in the next loop iteration:

     F_2    F_3
      a      b
    

    If you want to update the algorithm sum the last three values, think about storing them like this:

     T_0    T_1    T_2
      a      b      c
    

    Then shift them again:

     T_1    T_2    T_3
      a      b      c
    

    Then shift them again:

     T_2    T_3    T_4
      a      b      c
    

    Converting this intuition into code is a good exercise, so I’ll leave those details to you.

    That said – there is a much, much faster way to compute the nth term of the Fibonacci and “Tribonacci” sequences. This article describes a very clever trick using matrix multiplication to compute terms more quickly than the above loop, and there is code available here that implements this algorithm.

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just going through the sample Scala code on Scala website, but encountered an annoying
I was just going through the following URL, and i noticed that when i
I'm just going through the MVC tutorials on asp.net, ( this one ). I
I was just going through all the Mathematical stuff which is used in programming.
I am new to programming and i am just going through a python book.
I am new to the world of java and threads..I was just going through
I am going through the various Google AppEngine tutorials sometimes, and I just noticed
I am going through the Tapestry beginner tutorial at: http://tapestry.apache.org/tapestry-tutorial.html I just downloaded the
Okay, I am going to go through ALL my steps thus far just so
Hi I'm just going over some basic javascript and I came across this piece

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.