Skip to content

Commit 5f868de

Browse files
committed
chore: updated video image
1 parent bf47910 commit 5f868de

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
- [DFS Vs BFS](#dfs-vs-bfs)
3535
- [Sorting](#sorting)
3636
- [Merge Sort](#merge-sort)
37+
- [Merge Sort Algorithm Simulator](#merge-sort-algorithm-simulator)
3738
- [Implement Merge Sort](#implement-merge-sort)
3839
- [Find Median Values](#find-median-values)
3940
- [Math.floor](#mathfloor)
@@ -350,9 +351,11 @@ Example: Suppose you have given a tree structure and asked to calculate the aver
350351

351352
Browser's JavaScript Engine (`Array.prototype.sort`) uses merge sort maximum time. Runtime complexity O(n logn), Memory complexity O(n) because we have to create new list. It uses divide-and-conquer algorithm! and also it is recursive.
352353

353-
https://www.youtube.com/watch?v=UxnyImctVzg
354+
https://www.youtube.com/watch?v=UxnyImctVzg
354355

355-
[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/UxnyImctVzg/0.jpg)](https://www.youtube.com/watch?v=UxnyImctVzg)
356+
#### Merge Sort Algorithm Simulator
357+
358+
[![Merge Sort Algorithm Simulator](https://img.youtube.com/vi/UxnyImctVzg/0.jpg)](https://www.youtube.com/watch?v=UxnyImctVzg 'Merge Sort Algorithm Simulator')
356359

357360
#### Implement Merge Sort
358361

0 commit comments

Comments
 (0)