T(n) = 2T(n - 1) +1
Using Master's Method,
Since a = 2 and a > 1,
Therefore, T(n) = 2^(n/1) ..... [where b = 1 and for a > 1, T(n) = Θ(a^(n/b))]
Therefore, T(n) = Θ(2^n), which is the time complexity of Tower of Hanoi.
And Correct Option is D) T(n) = 2T(n - 1) +1