1
tueor
5y

Time complexity doubt

How can you say T(n) ≤ 3T(floor(n/4)) + cn²

Given that T(n) =3T(floor(n/4)) +Θ(n²)

Won't it imply Θ(n²) ≤ cn², which seems incorrect (or am i wrong to think its incorrect?)

Comments
Add Comment