CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: 2kaud

Search: Search took 0.16 seconds.

  1. Replies
    7
    Views
    2,100

    Re: Towers of Hanoi help

    The Towers of Hanoi is one of those problems that all computer science students have to 'experience' - as it helps with 'problem solving'!!?? I got it in a written pascal paper as part of my computer...
  2. Replies
    7
    Views
    2,100

    Re: Towers of Hanoi help

    The analysis of Towers of Hanoi is quite interesting.

    Background
    At the creation of the universe, priests in the temple of Brahma were supposedly given three diamond needles, with one needle...
  3. Replies
    7
    Views
    2,100

    Re: Towers of Hanoi help

    void moveDisks(int count, int needle1, int needle3, int needle2)
    {
    if (count > 0) {
    moveDisks(count - 1, needle1, needle2, needle3);
    cout << "Move disk " << count << " from " <<...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured