996 views

2 Answers

Best answer
2 votes
2 votes

..................

selected by
1 votes
1 votes

ANSWER FOR THE Nth TERM OF FIBONACCI SERIES.

Related questions

1.2k
views
1 answers
0 votes
Shreya2002 asked Oct 27, 2022
1,212 views
How to solve this recurrence relationT(n)= T(0.09n) + T(0.91n) + cnwhere c is constant and T(1)=1options are-
955
views
2 answers
1 votes
srestha asked May 10, 2019
955 views
What is the solution of recurrence relation$T\left ( n \right )=T\left ( n-1 \right )+n$
9.3k
views
2 answers
2 votes
pradeepchaudhary asked Jul 14, 2018
9,349 views
Q.6 The time complexity of an algorithm T(n), where n is the input size, is given by— T(n)= T(n-1) + 1/n, if n>1 = 1, otherwise.The order of the algorithm is—(a) log n(c) n^2(b) n(d) n*n
1.5k
views
2 answers
2 votes
iarnav asked Apr 3, 2018
1,539 views
Solution to the Recurrence equation $T(n) = T(n/5)+T(7n/10)+O(n)$ is