The Tower of Hanoi is a mathematical game or puzzle. It consists of three rods and a number
of disks of different sizes, which can slide onto any rod. The puzzle starts with the disks in a
neat stack in ascending order of size on one rod, the smallest at the top, thus making a conical
shape. The objective of the puzzle is to move the entire stack to another rod, obeying the
following simple rules:
• Only one disk can be moved at a time.
• Each move consists of taking the upper disk from one of the stacks and placing it on top of
another stack.
• No disk may be placed on top of a smaller disk.
Design an iterative and recursive algorithm for above mathematical game.
WAP to create a class which stores a dynamic integer array and its size. Include all the constructors and destructor in the class. Store two arrays of different size in two objects. Join the two arrays and and store it in another object using a member function.
Implement conversion from INFIX to POSTFIX and evaluation of POSTFIX
Is that provided code implemented with all the functionalities given in question?.I think,last 2 functionalities are not implemented in the code...can you please confirm back to me.
Thanks,