Ultimate DSA Interview Prep: 8/12 Trees
24 min readSep 17, 2024
A curated list of LeetCode problems covering key concepts and techniques to help you prepare for your next DSA interview.
- Arrays & Strings
- Hashmaps & Sets
- 2 Pointers
- Stacks
- Linked List
- Binary Search
- Sliding Window
- Trees
- Heaps
- Recursive Backtracking
- Graphs
- Dynamic Programming
Trees
Easy:
- https://leetcode.com/problems/invert-binary-tree/description/
- https://leetcode.com/problems/maximum-depth-of-binary-tree/
- https://leetcode.com/problems/balanced-binary-tree/description/
- https://leetcode.com/problems/diameter-of-binary-tree/description/
- https://leetcode.com/problems/same-tree/description/
- https://leetcode.com/problems/symmetric-tree/
- https://leetcode.com/problems/path-sum/
- https://leetcode.com/problems/minimum-absolute-difference-in-bst/