Add big O info.

This commit is contained in:
Oleksii Trekhleb 2018-03-30 10:13:58 +03:00
parent de2d9bd09f
commit 1eaab78371
4 changed files with 9 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 KiB

View File

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 89 KiB

View File

@ -8,9 +8,11 @@
## Big O Notation
Order of growth of algorithms specified in Big O notation. Source: [Big O Cheat Sheet](http://bigocheatsheet.com/).
Order of growth of algorithms specified in Big O notation.
![Big O graphs](https://github.com/trekhleb/javascript-algorithms/blob/master/assets/big-O-graph.png)
![Big O graphs](https://github.com/trekhleb/javascript-algorithms/blob/master/assets/big-o-graph.png)
Source: [Big O Cheat Sheet](http://bigocheatsheet.com/).
Below is the list of some of the most used Big O notations and their performance comparisons against different sizes of the input data.

View File

@ -4,3 +4,8 @@
- [YouTube Playlist](https://www.youtube.com/playlist?list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)
## Common Data Structure Operations
![Common Data Structure Operations](https://github.com/trekhleb/javascript-algorithms/blob/master/assets/big-o-graph.png)
Source: [Big O Cheat Sheet](http://bigocheatsheet.com/).