Author | Message |
---|---|
G190852562
Posts: 162
|
Posted 23:04 Dec 06, 2014 |
So I'm looking at the examples and one thing that threw me off was this f( n ) = n * log n = Ω( n ). This is the example I'm looking at: 1. T(n) = 3 * T(n / 4) + n * log n Answer: a = 3, b = 4, f(n) = n * log n, n(logba) = O( n0.793) How did they obtain Ω(n)? |