|
39 | 39 | - [DFS Vs BFS](#dfs-vs-bfs)
|
40 | 40 | - [Algorithms](#algorithms-1)
|
41 | 41 | - [Merge Sort](#merge-sort)
|
42 |
| - - [Merge Sort Algorithm Simulator](#merge-sort-algorithm-simulator) |
43 |
| - - [Implement Merge Sort](#implement-merge-sort) |
44 | 42 | - [Find Median Values (With Merge Sort Algorithm)](#find-median-values-with-merge-sort-algorithm)
|
45 | 43 | - [Quick Sort](#quick-sort)
|
46 | 44 | - [BFS (Breath First Search)](#bfs-breath-first-search)
|
@@ -107,27 +105,27 @@ Learn Big O. Make sure you give what would be the `runtime complexity` and `memo
|
107 | 105 |
|
108 | 106 | ## Data Structures
|
109 | 107 |
|
110 |
| -[x] Array |
111 |
| -[] Hash Table |
112 |
| -[x] Linked List |
113 |
| -[] Stack |
114 |
| -[] Queue |
115 |
| -[] Tree |
116 |
| -[] Tries |
117 |
| -[] Graphs |
118 |
| -[] Heaps |
119 |
| -[] Vectors |
| 108 | +- [x] Array |
| 109 | +- [ ] Hash Table |
| 110 | +- [x] Linked List |
| 111 | +- [ ] Stack |
| 112 | +- [ ] Queue |
| 113 | +- [ ] Tree |
| 114 | +- [ ] Tries |
| 115 | +- [ ] Graphs |
| 116 | +- [ ] Heaps |
| 117 | +- [ ] Vectors |
120 | 118 |
|
121 | 119 | ## Algorithms
|
122 | 120 |
|
123 |
| -[x] Merge sort |
124 |
| -[] Quick sort |
125 |
| -[] Breadth-first search |
126 |
| -[] Depth-first search |
127 |
| -[x] Binary Search |
| 121 | +- [x] Merge sort |
| 122 | +- [ ] Quick sort |
| 123 | +- [ ] Breadth-first search |
| 124 | +- [ ] Depth-first search |
| 125 | +- [x] Binary Search |
128 | 126 |
|
129 |
| - |
130 | 127 | ## Data Structure Q & A
|
| 128 | + |
131 | 129 | ### Array
|
132 | 130 |
|
133 | 131 | Arrays can store a fixed number of elements, whereas a collection stores object dynamically so there is no size restrictions it grows and shrinks automatically.
|
@@ -364,13 +362,14 @@ https://www.youtube.com/watch?v=UxnyImctVzg
|
364 | 362 |
|
365 | 363 | 
|
366 | 364 |
|
367 |
| -#### Merge Sort Algorithm Simulator |
| 365 | +**Merge Sort Implementation Visualization** |
368 | 366 |
|
369 | 367 | [](https://www.youtube.com/watch?v=UxnyImctVzg 'Merge Sort Algorithm Simulator')
|
370 | 368 |
|
371 |
| -#### Implement Merge Sort |
| 369 | +**Implementation of Merge Sort** |
372 | 370 |
|
373 |
| -[Exercise File](src/sorting/merge-sort/merge-sort.mjs) |
| 371 | +- [Merge Sort Implementation Question](https://codepen.io/roopkt/pen/ExWRRgP?editors=0010) |
| 372 | +- [Merge Sort Implementation Answer](https://codepen.io/roopkt/pen/zYZaaZr?editors=0010) |
374 | 373 |
|
375 | 374 | #### Find Median Values (With Merge Sort Algorithm)
|
376 | 375 |
|
|
0 commit comments