Skip to content

Commit 639cbdf

Browse files
committed
chore: added files
1 parent 0e71796 commit 639cbdf

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

README.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
- [DFS Vs BFS](#dfs-vs-bfs)
4040
- [Algorithms](#algorithms-1)
4141
- [Merge Sort](#merge-sort)
42-
- [Merge Sort Algorithm Simulator](#merge-sort-algorithm-simulator)
43-
- [Implement Merge Sort](#implement-merge-sort)
4442
- [Find Median Values (With Merge Sort Algorithm)](#find-median-values-with-merge-sort-algorithm)
4543
- [Quick Sort](#quick-sort)
4644
- [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
107105

108106
## Data Structures
109107

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
120118

121119
## Algorithms
122120

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
128126

129-
130127
## Data Structure Q & A
128+
131129
### Array
132130

133131
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
364362

365363
![](https://i.imgur.com/YpQSB5J.png)
366364

367-
#### Merge Sort Algorithm Simulator
365+
**Merge Sort Implementation Visualization**
368366

369367
[![Merge Sort Algorithm Simulator](https://img.youtube.com/vi/UxnyImctVzg/0.jpg)](https://www.youtube.com/watch?v=UxnyImctVzg 'Merge Sort Algorithm Simulator')
370368

371-
#### Implement Merge Sort
369+
**Implementation of Merge Sort**
372370

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)
374373

375374
#### Find Median Values (With Merge Sort Algorithm)
376375

0 commit comments

Comments
 (0)