Optimal execution time for Tower of hanoi problem with ‘n’ disks is....... Ashraf Mohammad November 23, 2023 Data Structures, Latest, NET, Solving Recurrences, Tower of Hanoi problem No comments: Answer: T(n) = 2T(n-1) + 1 Optimal execution time for Tower of hanoi problem with ‘n’ disks is T(n) = 2T(n-1) + 1 Email This BlogThis! Share to X Share to Facebook
0 comments:
Post a Comment