vote up 0 vote down star

What algorithms do you know that run in quadratic time?

flag

2  
Umm. What problem are you trying to solve? – spender Oct 1 at 8:39
2  
en.wikipedia.org/wiki/… – Jonas Elfström Oct 1 at 8:44

closed as not a real question by Naveen, Shay Erlichmen, Mark, Checkers, flybywire Oct 1 at 9:02

4 Answers

vote up 1 vote down check

Constructing a complete graph of n vertices is O(n²). (There are (n² + n)/2 edges in such a graph.)

link|flag
Yup... I was looking for interesting examples, not the trivial ones. Should have formulated it as "What interesting algorithms do you know..." maybe it wouldn't have gotten closed. – luvieere Oct 1 at 15:18
vote up 2 vote down

I think Bubble Sort is the classic example.

link|flag
vote up 0 vote down

simple example in C/C++/Java:

for (x = 0; x<n; x++)
{
    for (y = 0; y<n; y++)
    {
        doSomething(x,y)
    }
}

this runs in O(n²)

link|flag
5  
Only if doSomething(x,y) runs in O(1) (with respect to x and y) – simonn Oct 1 at 8:43
vote up 1 vote down

Compare each element in an array with all other elements in the array.

link|flag

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