A simple puzzle involving moving discs between rods. Commonly used as a programming kata/exercise and frequently set as homework when introducing the concept of recursion.

learn more… | top users | synonyms

0
votes
2answers
46 views

Parsing the recursive Hanoi Tower algorithm

I am sorry to ask this question, but I didn't find any of the other existing threads useful. I have to say I have a difficulty wrapping my head around complex topics, maybe I am just dumb. I am deeply ...
0
votes
0answers
9 views

Cyclical tower of Hanoi

So I'm just starting out at logic and the teachers are asking us to create with pseudocode the logic behind a cyclic tower of Hanoi where you move a stack from A to B and the only movements are ...
0
votes
3answers
184 views

Facebook sample puzzle: Towers of Hanoi

Here is a question from Facebook hiring sample test. There are K pegs. Each peg can hold discs in decreasing order of radius when looked from bottom to top of the peg. There are N discs which have ...
1
vote
1answer
56 views

Unexpected performance numbers using Towers of Henoi solution

Here is a performance puzzler: I'm running on a Intel Celeron 1.8GHz, 3GB RAM, Ubuntu 12.04 32-bit box. I wrote the Towers of Henoi recursive solution in C, Python & Java. I ran the same for n = ...
0
votes
2answers
168 views

Hanoi Tower amount of combination?

Recently i was on an interview for C++ Develpoer position, and i was asked to write a program that solve a hanoi tower puzzle with 3 columns and 1000000 discs, the program must write an output of ...
1
vote
1answer
38 views

how to eradicate 'None' from the end of a recursion

I have the following code: n=input('How many disks?') def MoveTower(n, source='A', dest='C', store='B'): if n==1: print source + '->' + dest else: MoveTower(n-1, source, ...
-2
votes
1answer
418 views

Towers of hanoi, with every move shown [closed]

I need to write a recursive towers of hanoi program, which I have done, but it needs to output the positions of the discs represented by stars and that's what I'm having trouble with. It needs to ...
-1
votes
1answer
119 views

Towers of Hanoi 3 Towers [closed]

I'm doing Towers of Hanoi using exception handling and 3 stacks. I'm facing the issue of displaying like for e.g. I want to display the users moves like show something similar to this 1 2 3 ...
0
votes
3answers
90 views

How can I instantiate an array of Stacks of type int?

I am trying to create an array of stacks, in which each stack within the array is of type int. If I create the array like this:  Stack<Integer>[] numbers = new ...
-5
votes
2answers
206 views

Solving towers of hanoi from any position of disks [closed]

I need an algorithm that's solves towers of hanoi from any posistion of disks. I was trying iterative solution from wikipedia but it works only when i want to move disks from first tower to third. ...
2
votes
1answer
305 views

Towers of Hanoi Explanation

I'm a beginner to python and would like to know what the role of the if statement is in this Towers of Hanoi function: def hanoi(ndisks, startPeg=1, endPeg=3): if ndisks: hanoi(ndisks-1, ...
-1
votes
1answer
69 views

Turing Machine - Simulate Towers of Hanoi [closed]

Would it be possible to simulate the game Towers of Hanoi on this website's Turing machine? http://morphett.info/turing/turing.html I want to have a go but an not sure how to go about it. Any advice ...
0
votes
4answers
105 views

Tower of Hanoi's return in java

public static void solveTowers(int disks, int sourcePeg, int destinationPeg, int tempPeg) { //always set the base case in any type of recursion programs if(disks == 1) { ...
0
votes
1answer
37 views

error when using this in c++

class Tower { int index;//index of the tower; nodeStack<int> t; int size;//number of disks in the tower; public: Tower(int in); void moveTopTo(Tower&); void move(int size,Tower& ...
0
votes
1answer
178 views

Cyclic (Unidirectional) Tower of Hanoi Suggestions?

Here is the Python code I've written for the Tower of Hanoi Problem where the tower must be transferred from the left peg to the middle peg, using the right peg as the spare: def hanoi(n, origin = ...
-1
votes
1answer
94 views

I keep getting wrong output or null pointer exception in my towers program

I'm working on solving towers game by using stacks and linked lists and moving blocks from tower to tower by using recursion. I encountered a problem in my problem which causes ...
1
vote
1answer
259 views

Towers of Hanoi in Prolog

I'm trying to figure out this problem for a CS homework assignment (I'll tag it as homework, I just need a step in the right direction). EDIT: Apparently the 'homework' tag is obsolete and is no ...
2
votes
1answer
435 views

HASKELL : Solving Towers of Hanoi

The code below solves hanoi returning a list of moves using predefined functions moveLOD,swapLOI and swapLID. MoveLOD: moves 1 disc from the first position to third the pin in the third position of ...
0
votes
1answer
657 views

Tower of Hanoi [Edit] - k peg solution

I was able to come up with an algorithm (logical) to solve a k-peg solution for the Tower of Hanoi problem, but when I implement my code, I was getting segmentation fault. void move(int ...
0
votes
1answer
2k views

Tower of Hanoi - n peg solution algorithm

I was implementing the tower of hanoi problem to understand more about recursion. I was able to implement it using the 3 peg case, however, when I wanted to use more pegs (to generate less moves) I ...
0
votes
2answers
412 views

Binary solution for Tower of Hanoi

I am reading Algorithms by Robert Sedgewick Below is an excerpt from page 213, in reference to number of trailing zeros in binary representation of numbers. For the towers of Hanoi problem, the ...
0
votes
1answer
396 views

recursive solution for tower of hanoi

I am reading algorithms in C++ book by RobetSedwick. Here author is explaning about Towers of Hanoi using divide and conquer design and recurrence. Followin code is recursion solution to the proble. ...
6
votes
1answer
547 views

Towers on Hanoi in Java using only int[ ][ ] (can it be done?)

This is not homework, I don't have money for school so I am teaching myself whilst working shifts at a tollbooth on the highway (long nights with few customers). I am trying to implement a simple ...
3
votes
2answers
610 views

Time Analysis of Tower of Hanoi in Java

I was just testing Towers of Hanoi problem in Java and I ran the following code: (I have removed sysouts for convinience) public class Util { public static void main(String[] args) { for ...
0
votes
2answers
518 views

How can I resolve towers of hanoi with breadth or depth first search, in Prolog?

in most implementations that I see, using a recursive solution. But, I don´t want this. I want search in tree with a search algorithm, like a breadth-fisrt or depth-first. thank you
6
votes
3answers
801 views

Towers of Hanoi solution better than O(2^n)?

Is there a solution for Towers of Hanoi whose running time is less than O(2n) where n is the number of disks to move? My solution takes O(2n) time. Also, the below solution is with recursion. Can we ...
0
votes
2answers
2k views

Towers Of Hanoi Java

This is a homework that I was working on. I have created 2 classes to play Towers of Hanoi. The first one is the basically a runner to run the actual game class. import java.util.Scanner; class ...
2
votes
1answer
209 views

Counter for Towers Of Hanoi

I have written a code for Towers Of Hanoi game. I don't know how to implement a counter for this program on how many times it ran. Any help will be much appreciated. public class MainClass { public ...
0
votes
2answers
196 views

how to make this algorithm parallel with OpenMP?

Once again I'm stuck when using openMP in C++. This time I'm trying to implement a parallel Hanoi Tower . sub Hanoi(n,D,A,I) if n =1 then Move the disk D to A else ...
1
vote
3answers
330 views

Counting function calls in the Towers of Hanoi?

So I want to count how many time the function moveSingleDisk() is called, but I can't seem to figure it out... Using this code: #include <iostream> using namespace std; void moveTower(int n, ...
1
vote
1answer
415 views

Solution of “Tower of Hanoi” When all disks are not in A

As you know there are some ways to solve Tower of Hanoi, but they require all disks to be in one tower at the begining. Now I wanna know is there any way to solve it, where the disks are already ...
2
votes
2answers
622 views

Implement a counter on prolog towers of hanoi

I have a program due in the morning using Prolog. I am implementing Towers of Hanoi. What I need help with is each time that it prints Move disc number # from _ to _. I need to increment a counter ...
0
votes
1answer
2k views

Towers of hanoi in Java using stacks

I am writing a program to play the towers of hanoi game in Java. We are to using stacks to represent the towers. I have an array of 3 stacks two of which I initialize to be empty and the last one to ...
1
vote
1answer
492 views

Solving recursive Towers of Hanoi in Lisp

My code in lisp is as follows: (defun solve-hanoi(from) (hanoi (length from) from '() '())) (defun hanoi(height from to aux) (when (>= height 1) (hanoi (- height 1) from ...
0
votes
1answer
282 views

towers of hanoi in common lisp

I think this is going to be a vague question because I don't know exactly what I am doing in the first place but here it goes. I have to do a towers of hanoi problem in common lisp using lists. ...
2
votes
4answers
326 views

Towers of Hanoi with Named Discs

For an assignment I have to create Towers of Hanoi in Common LISP with named discs. I need to get output that looks something like this: [1]> (hanoi '(Small Medium Large)) Moved SMALL from Peg 1 ...
0
votes
1answer
245 views

Idiomatic functional way to move disc in Towers of Hanoi

I am learning Scheme and as a toy example I am doing a solution verifier (not a solver) for Towers of Hanoi. I want to use a purely functional style (just to get into the mindset) and I represent the ...
1
vote
2answers
470 views

Continuation passing style makes things tail recursive?

It hurts to ask it here. It really does. Every time I search in vain for the answers to my troubles, I see it. Taunting me. Stack Overflow. Anyway, some hellish influence caused me to attempt to ...
1
vote
5answers
4k views

Towers of Hanoi

I am working on an exercise in a book which asks us to solve the Towers of Hanoi problem using recursive methods. I have come to a solution, but from what I gather after browsing the Internet when ...
3
votes
4answers
8k views

Solving the Tower of Hanoi by using a good state space and then a search tree

I want to solve the "Towers of Hanoi" problem by using a good "state space". Using an appropriate state space is a way that is suggested by some AI techniques. Having a good state space, I would then ...
4
votes
2answers
340 views

Can this Haskell kata solution be made more idiomatic?

I'm relearning Haskell after a 10 year hiatus, partly to see what's changed and partly as an antidote to days spent in C#, SQL and JavaScript and partly as it's cool all of a sudden ;-) I decided to ...
4
votes
1answer
201 views

Cannot make sense of my lecturers recursive algorithm for the Towers of Hanoi

The algorithm is as follows : Algorithm move(k, from, to, spare) if k >0 then move(k−1, from, spare, to) printf (”move top disc from %d to %d\n”, from, to) move(k−1, spare, to, from) k is the ...
0
votes
3answers
430 views

Tower of Hanoi, stop sliding

I developed a solution for the Tower of Hanoi problem: public static void bewege(int h, char quelle, char ablage, char ziel) { if(h > 0){ bewege(h - 1, quelle, ziel, ablage); ...
3
votes
1answer
158 views

Hanoi specific problem

Suppose that there are 2*n disks, How could be Hanoi problem solved if odd numbers are disks on bar "A" and even disks are on bar "B"? please Let me know if more information is needed. Thanks
1
vote
3answers
1k views

Towers of Hanoi question

I read through a few of the discussions about the Towers of Hanoi problem. I understand the recursive solution using the following code: void Hanoi3(int nDisks, char source, char intermed, char ...
1
vote
1answer
195 views

Is the Tower of Hanoi related to Hà Nội, Việt Nam? [closed]

In Chinese many people are translating the Tower of Hanoi to a completely different name with Hanoi the capital of Vietnam, so I want to ask the etymology of this phrase. Is it related to Hanoi the ...
17
votes
4answers
1k views

Code Golf: Towers of Hanoi

Rules The Towers of Hanoi is a puzzle, and if you are not very familiar with it, here is how it works: The play field consists of 3 rods, and x number of disks, each next one bigger than the ...
2
votes
4answers
622 views

Tower of Hanoi displaying output. How to display 1 tab for 1st recursive call, 2 tabs for 2nd recursive call, etc?

My task was to add a bunch of print statements to display the the complete output of Tower of Hanoi to see and understand what it is doing behind the scenes, instead of just giving you the final ...
1
vote
1answer
509 views

Trying to make a program using a data structure with an array

I just started trying to learn programming so i am taking a class at my local community college and we have to make a program of the tower of hanoi i have been reading books going to the library and ...
0
votes
1answer
143 views

Unit testing the tower of hanoi problem

If I was unit testing the tower of hanoi problem, what would be the best cases? I can test the parameters and the general expected output of the method, but is it possible to test anything else? So I ...

1 2