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 6329045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:34:30+00:00 2026-05-24T17:34:30+00:00

I have seen the other Questions on SO about the Recursive function and I

  • 0

I have seen the other Questions on SO about the Recursive function and I have read the responses but I still can’t get the algorithm to click in my head

var hanoi = function (disc, src, aux, dst) {

  if (disc > 0) {
    hanoi(disc - 1, src, dst, aux);
   document.write('Move disc ' + disc + ' from ' + src + ' to ' + dst);
    hanoi(disc - 1, aux, src, dst);
  }
}

hanoi(3, 'Src', 'Aux', 'Dst');

How does the document.write(…), ever run. My Logic is First time we run the function disc is > 3. then we recursively call the function again skipping everything below so how does the document.write get a chance to run?

I understand recursion (done the basic examples) but i still can’t see how you get an output. If there is a way i can run it visually and see it in action, that would help alot.

  • 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-05-24T17:34:31+00:00Added an answer on May 24, 2026 at 5:34 pm

    You can think of what will happen as a call tree (time moves from top to bottom):

    hanoi(3, ...) =>
     |-> hanoi(2, ...) =>
     |    |-> hanoi(1, ...) =>
     |    |    |-> hanoi(0, ...) =>
     |    |    |    \-> (does nothing)
     |    |    |-> document.write(...)
     |    |    |-> hanoi(0, ...) =>
     |    |    |    \-> (does nothing)
     |    |  <-/ [hanoi(1, ...) finished]
     |    |-> document.write(...)
     |    |-> hanoi(1, ...) =>
     |    |    |-> hanoi(0, ...) =>
     |    |    |    \-> (does nothing)
     |    |    |-> document.write(...)
     |    |    |-> hanoi(0, ...) =>
     |    |    |    \-> (does nothing)
     |    |  <-/ [hanoi(1, ...) finished]
     |  <-/ [hanoi(2, ...) finished]
     |-> document.write(...) [halfway done!]
     |-> hanoi(2, ...) =>
     |    \-> [same pattern as the first time, with different data]
     \-> [hanoi(3, ...) finished]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have seen some other questions about this, but none of the answers really
I've seen the other recursive palindrome questions and I've seen the answers, but the
I have seen other questions about this and I've tried using Alpha and imagetruecolortopalette
I googled,I binged,I already have seen the other duplicates here,but none of them work
I have seen lots of questions recently about WPF... What is it? What does
I understand there are multiple questions about this on SO, but I have yet
I am aware that questions about recurring events are common but I have not
I've seen a lot of questions and discussions about build vs. buy, but most
I have seen in some stackoverflow questions/answers people talking about a boost macro (I
I have seen many somewhat similar questions, but nothing quite what I'm looking for.

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.