in DS recategorized by
378 views
1 vote
1 vote

A recursive problem like tower of hanoi can be rewritten without recursion using:

  1. stack
  2. priority queue
  3. graph
  4. cycles
in DS recategorized by
by
378 views

1 Answer

0 votes
0 votes

$\textrm{option A is correct. The stack data structure is mainly used in recursion related problems.}$

UGCNET-June2016-II: 24

Answer:

Related questions