Skip to content

Commit 7716875

Browse files
authored
contents: add links to extra resources for algorithms and data structures (#563)
Adds links to online lectures and slides from data structures and algorithms course covering hash tables, binary search trees, red-black trees and b-trees.
1 parent a2bbe6e commit 7716875

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

apps/website/contents/algorithms/hash-table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ In the case of hash collisions, there are a number of collision resolution techn
3737
- [Hashing Out Hash Functions](https://medium.com/basecs/hashing-out-hash-functions-ea5dd8beb4dd), basecs
3838
- Videos
3939
- [Core: Hash Tables](https://www.coursera.org/lecture/data-structures-optimizing-performance/core-hash-tables-m7UuP), University of California San Diego
40+
- [A Brief Guide to Hash Tables](https://www.youtube.com/watch?v=r1XZGP5ppqQ) ([slides](https://samuelalbanie.com/files/digest-slides/2022-09-brief-guide-to-hash-tables.pdf)), Samuel Albanie, University of Cambridge
4041

4142
## Implementations
4243

apps/website/contents/algorithms/tree.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ Trees are commonly used to represent hierarchical data, e.g. file systems, JSON,
3333

3434
- Videos
3535
- [Trees](https://www.coursera.org/lecture/data-structures/trees-95qda), University of California San Diego
36+
- [A Brief Guide to Binary Search Trees](https://www.youtube.com/watch?v=0woI8l0ZWmA) ([slides](https://samuelalbanie.com/files/digest-slides/2022-10-brief-guide-to-binary-search-trees.pdf)), Samuel Albanie, University of Cambridge
37+
- [A Brief Guide to Red-Black Trees](https://www.youtube.com/watch?v=t-oiZnplv7g) ([slides](https://samuelalbanie.com/files/digest-slides/2022-12-brief-guide-to-red-black-trees.pdf)), Samuel Albanie, University of Cambridge
38+
- [A Brief Guide to B-trees](https://www.youtube.com/watch?app=desktop&v=7MqaHGWRS3E) ([slides](https://samuelalbanie.com/files/digest-slides/2022-12-brief-guide-to-b-trees.pdf)), Samuel Albanie, University of Cambridge
3639
- Readings
3740
- [How To Not Be Stumped By Trees](https://medium.com/basecs/how-to-not-be-stumped-by-trees-5f36208f68a7), basecs
3841
- [Leaf It Up To Binary Trees](https://medium.com/basecs/leaf-it-up-to-binary-trees-11001aaf746d), basecs

0 commit comments

Comments
 (0)