diff --git a/assets/big-o-data-structures.png b/assets/big-o-data-structures.png new file mode 100644 index 00000000..98023c52 Binary files /dev/null and b/assets/big-o-data-structures.png differ diff --git a/assets/big-O-graph.png b/assets/big-o-graph.png similarity index 100% rename from assets/big-O-graph.png rename to assets/big-o-graph.png diff --git a/src/algorithms/README.md b/src/algorithms/README.md index 5bd476f7..5571428c 100644 --- a/src/algorithms/README.md +++ b/src/algorithms/README.md @@ -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. diff --git a/src/data-structures/README.md b/src/data-structures/README.md index 725b35bf..eb47bbff 100644 --- a/src/data-structures/README.md +++ b/src/data-structures/README.md @@ -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/).