Skip to content

Added Animation Explanation #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Search Algorithms/Binary Search.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ Binary Search should return -1 as 9 is not present in the array
#### Video Explanation

[A CS50 video explaining the Binary Search Algorithm](https://www.youtube.com/watch?v=5xlIPT1FRcA)

#### Animation Explanation

- [Tute Board](https://boardhub.github.io/tute/?wd=binarySearchAlgo2)
4 changes: 4 additions & 0 deletions Search Algorithms/Linear Search.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ Linear Search should return -1 as 6 is not present in the array
#### Video Explanation

[A CS50 video explaining the Linear Search Algorithm](https://www.youtube.com/watch?v=CX2CYIJLwfg)


#### Animation Explanation
- [Tute Board](https://boardhub.github.io/tute/?wd=linearSearchAlgo)
5 changes: 5 additions & 0 deletions Sorting Algorithms/Bubble Sort.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,8 @@ Indexes: 0 1 2 3
#### Others

Bubble sort is also known as Sinking sort.

#### Animation Explanation

- [Tute Board](https://boardhub.github.io/tute/?wd=bubbleSortAlgo2)

5 changes: 5 additions & 0 deletions Sorting Algorithms/Selection Sort.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,8 @@ Indexes: 0 1 2 3
#### Video Explanation

[A video explaining the Selection Sort Algorithm](https://www.youtube.com/watch?v=f8hXR_Hvybo)


#### Animation Explanation

- [Tute Board](https://boardhub.github.io/tute/?wd=selectSortAlgo2)