|
13 | 13 |
|
14 | 14 |
|
15 | 15 |
|
16 |
| - |
17 | 16 | - [Installation](#installation)
|
18 | 17 | - [Features](#features)
|
19 | 18 | - [What's Inside](#whats-inside)
|
20 |
| - - [📈 Algorithms Analysis](#-algorithms-analysis) |
21 |
| - - [🥞 Linear Data Structures](#-linear-data-structures) |
22 |
| - - [🌲 Non-Linear Data Structures](#-non-linear-data-structures) |
23 |
| - - [⚒ Algorithms Techniques](#%E2%9A%92-algorithms-techniques) |
24 |
| -- [Book](#book) |
25 |
| -- [FAQ](#faq) |
26 |
| -- [Support](#support) |
27 |
| -- [License](#license) |
28 |
| - |
| 19 | + - [Algorithms Analysis](#algorithms-analysis) |
| 20 | + - [Computer Science nuggets without all the mumbo-jumbo](#computer-science-nuggets-without-all-the-mumbo-jumbo) |
| 21 | + - [Learn to calculate run time from code examples](#learn-to-calculate-run-time-from-code-examples) |
| 22 | + - [Learn how to compare algorithms using Big O notation.](#learn-how-to-compare-algorithms-using-big-o-notation) |
| 23 | + - [Comparing algorithms using Big O notation](#comparing-algorithms-using-big-o-notation) |
| 24 | + - [Most common time complexities](#most-common-time-complexities) |
| 25 | + - [Time complexity graph](#time-complexity-graph) |
| 26 | + - [Linear Data Structures](#linear-data-structures) |
| 27 | + - [Understand the ins and outs of the most common data structures](#understand-the-ins-and-outs-of-the-most-common-data-structures) |
| 28 | + - [When to use an Array or Linked List. Know the tradeoffs](#when-to-use-an-array-or-linked-list-know-the-tradeoffs) |
| 29 | + - [Build a List, Stack and a Queue from scratch](#build-a-list-stack-and-a-queue-from-scratch) |
| 30 | + - [Non-Linear Data Structures](#non-linear-data-structures) |
| 31 | + - [HashMaps](#hashmaps) |
| 32 | + - [Know the properties of Graphs and Trees](#know-the-properties-of-graphs-and-trees) |
| 33 | + - [Graphs](#graphs) |
| 34 | + - [Trees](#trees) |
| 35 | + - [Implement a binary search tree for fast lookups](#implement-a-binary-search-tree-for-fast-lookups) |
| 36 | + - [Algorithmic Toolbox](#algorithmic-toolbox) |
| 37 | + - [Never get stuck solving a problem with 8 simple steps](#never-get-stuck-solving-a-problem-with-8-simple-steps) |
| 38 | + - [Master the most popular sorting algorithms](#master-the-most-popular-sorting-algorithms) |
| 39 | + - [Learn different approaches to solve algorithmic problems](#learn-different-approaches-to-solve-algorithmic-problems) |
29 | 40 |
|
30 | 41 |
|
31 | 42 |
|
@@ -69,7 +80,7 @@ _Note: If you prefer to consume the information more linearly, then the [book fo
|
69 | 80 | The topics are divided into four main categories, as you can see below:
|
70 | 81 |
|
71 | 82 |
|
72 |
| -### 📈 [Algorithms Analysis](book/part01-algorithms-analysis.asc) |
| 83 | +### [Algorithms Analysis](book/part01-algorithms-analysis.asc) |
73 | 84 |
|
74 | 85 |
|
235 | 246 |
|
236 | 247 |
|
@@ -355,7 +366,7 @@ From unbalanced BST to balanced BST
|
355 | 366 | details>
|
356 | 367 | blockquote>
|
357 | 368 |
|
358 |
| -### ⚒ [Algorithmic Toolbox](book/part04-algorithmic-toolbox.asc) |
| 369 | +### [Algorithmic Toolbox](book/part04-algorithmic-toolbox.asc) |
359 | 370 |
|
360 | 371 |
|
361 | 372 |
|
|
0 commit comments