There are many algorithms run in O(n {log n}^k)-time, where k>1.

It would be very helpful if you could provide me some reference about any problem that has:

\Omega{(n {log n}^k)} lower bound, where k>1.

I know that there are many examples for k=1, e.g. closest pair/ sorting.

link|improve this question
Any algorithm or algorithms in computational geometry? Also, is this homework? – Jacob Feb 7 '11 at 17:02
feedback

1 Answer

Here is a contrived example for k=2.

You have an nxn array. Each row of the array is sorted.

Each row has the property that every element in the row occurs an even number of times (in that row), except one, which occurs an odd number of times in that row.

Find the "odd" element of each row.

This has provable Omega(n log^2 n) lower bounds (and has O(n log^2 n) algorithms).

For the case of 1 row, we have the proof right here (on stackoverflow) : Find a number which occurs an odd number of times in a SORTED array which proves Omega(log^2 n) lower bounds. It easily proves the lower bound for this problem.

link|improve this answer
It's a good start! thank you for the help :) – jyoti Feb 8 '11 at 1:21
However, Is there any computational geometric problem, as Jacob said? – jyoti Feb 8 '11 at 1:21
@Jyoti: Sorry, don't remember any. I vaguely remember seeing something in comp geom but don't recall. – Aryabhatta Feb 8 '11 at 1:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.