Skip to content

Commit bcc6b78

Browse files
authored
Added Animation Explanation (#52)
* Added Animation Explanation * Added Animation Explanation * Added Animation Explanation * Added Animation Explanation
1 parent bbfd94d commit bcc6b78

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

Search Algorithms/Binary Search.md

+4
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,7 @@ Binary Search should return -1 as 9 is not present in the array
4949
#### Video Explanation
5050

5151
[A CS50 video explaining the Binary Search Algorithm](https://www.youtube.com/watch?v=5xlIPT1FRcA)
52+
53+
#### Animation Explanation
54+
55+
- [Tute Board](https://boardhub.github.io/tute/?wd=binarySearchAlgo2)

Search Algorithms/Linear Search.md

+4
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,7 @@ Linear Search should return -1 as 6 is not present in the array
4242
#### Video Explanation
4343

4444
[A CS50 video explaining the Linear Search Algorithm](https://www.youtube.com/watch?v=CX2CYIJLwfg)
45+
46+
47+
#### Animation Explanation
48+
- [Tute Board](https://boardhub.github.io/tute/?wd=linearSearchAlgo)

Sorting Algorithms/Bubble Sort.md

+5
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,8 @@ Indexes: 0 1 2 3
102102
#### Others
103103

104104
Bubble sort is also known as Sinking sort.
105+
106+
#### Animation Explanation
107+
108+
- [Tute Board](https://boardhub.github.io/tute/?wd=bubbleSortAlgo2)
109+

Sorting Algorithms/Selection Sort.md

+5
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,8 @@ Indexes: 0 1 2 3
6666
#### Video Explanation
6767

6868
[A video explaining the Selection Sort Algorithm](https://www.youtube.com/watch?v=f8hXR_Hvybo)
69+
70+
71+
#### Animation Explanation
72+
73+
- [Tute Board](https://boardhub.github.io/tute/?wd=selectSortAlgo2)

0 commit comments

Comments
 (0)