951 views

1 Answer

Related questions

2 votes
2 votes
2 answers
1
sripo asked Feb 15, 2019
515 views
T (n) = T (n/2) + 2; T (1) = 1When n is a power of 2, the correct expression for T (n) is:(A) 2(log n + 1)(B) 2 log n(C) log n + 1(D)2 log n + 1
1 votes
1 votes
0 answers
2
dan31 asked Feb 17, 2019
397 views
Give an efficient algorithm for maximum size rectangle binary sub-matrix with all 1s . [Complexity should be O($n^c$)](Memory based – Original question had a lot of ad...
1 votes
1 votes
1 answer
4