What algorithms do you know that run in quadratic time?
|
|
|||||||||
|
closed as not a real question by Naveen, Shay Erlichmen, Mark, Checkers, flybywire Oct 1 at 9:02 |
|
|
Constructing a complete graph of n vertices is O(n²). (There are (n² + n)/2 edges in such a graph.) |
||
|
|
|
I think Bubble Sort is the classic example. |
||
|
|
|
|
simple example in C/C++/Java:
this runs in O(n²) |
||||
|
|
|
Compare each element in an array with all other elements in the array. |
||
|
|
