I was working on recurrence relation and came across this example
T(n) = 2T(n/2) + log(n)
What will be the time complexity, ie, big O for this relation.
Thanks for any help in advance.
I was working on recurrence relation and came across this example
T(n) = 2T(n/2) + log(n)
What will be the time complexity, ie, big O for this relation.
Thanks for any help in advance.