mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-07-07 01:44:52 +08:00
Add big O sheet for sorting algorithms.
This commit is contained in:
@ -34,8 +34,6 @@
|
||||
* [Bubble Sort](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sorting/bubble-sort)
|
||||
* [Selection Sort](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sorting/selection-sort)
|
||||
|
||||
<span style="color:blue">test</span>
|
||||
|
||||
## Running Tests
|
||||
|
||||
**Run all tests**
|
||||
@ -96,3 +94,9 @@ Source: [Big O Cheat Sheet](http://bigocheatsheet.com/).
|
||||
|
||||

|
||||
Source: [Big O Cheat Sheet](http://bigocheatsheet.com/).
|
||||
|
||||
| Name | Best | Average | Worst | Memory | Stable | Method | Notes |
|
||||
| ------------------| ------- | --------- | ------- | --------- | --------- | ------------- | --------------- |
|
||||
| **Bubble sort** | _n_ | _n^2_ | _n^2_ | _1_ | _Yes_ | _Exchanging_ | Tiny code size. |
|
||||
|
||||
<span color="red">test</span>
|
||||
|
Reference in New Issue
Block a user