Add big O sheet for sorting algorithms.

This commit is contained in:
Oleksii Trekhleb 2018-04-13 06:35:56 +03:00
parent 43353cd17c
commit 468bf4a37d

View File

@ -96,7 +96,5 @@ 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>
| ------------------| :-----: | :-------: | :-----: | :-------: | :-------: | :------------ | :-------------- |
| **Bubble sort** | n | n^2 | n^2 | 1 | Yes | Exchanging | Tiny code size. |