Adds links for tree intro.

This commit is contained in:
John Washam 2022-09-09 17:24:57 -07:00
parent 44d5e769b2
commit a76bebddc4
1 changed files with 4 additions and 6 deletions

View File

@ -130,7 +130,7 @@ software development/engineering roles.
- [Binary search](#binary-search) - [Binary search](#binary-search)
- [Bitwise operations](#bitwise-operations) - [Bitwise operations](#bitwise-operations)
- [Trees](#trees) - [Trees](#trees)
- [Trees - Notes & Background](#trees---notes--background) - [Trees - Intro](#trees-intro)
- [Binary search trees: BSTs](#binary-search-trees-bsts) - [Binary search trees: BSTs](#binary-search-trees-bsts)
- [Heap / Priority Queue / Binary Heap](#heap--priority-queue--binary-heap) - [Heap / Priority Queue / Binary Heap](#heap--priority-queue--binary-heap)
- balanced search trees (general concept, not details) - balanced search trees (general concept, not details)
@ -759,11 +759,9 @@ if you can identify the runtime complexity of different algorithms. It's a super
## Trees ## Trees
- ### Trees - Notes & Background - ### Trees - Intro
- [ ] [Series: Trees (video)](https://www.coursera.org/lecture/data-structures/trees-95qda) - [ ] [Intro to Trees](https://www.coursera.org/lecture/data-structures/trees-95qda)
- basic tree construction - [ ] [Tree Traversal](https://www.coursera.org/lecture/data-structures/tree-traversal-fr51b)
- traversal
- manipulation algorithms
- [ ] [BFS(breadth-first search) and DFS(depth-first search) (video)](https://www.youtube.com/watch?v=uWL6FJhq5fM) - [ ] [BFS(breadth-first search) and DFS(depth-first search) (video)](https://www.youtube.com/watch?v=uWL6FJhq5fM)
- BFS notes: - BFS notes:
- level order (BFS, using queue) - level order (BFS, using queue)