Day 20 Journey: Understanding Binary Trees and Linked Lists

Tennis Kumar CTennis Kumar C
2 min read

Today's session focused on Binary Trees, and I solved a few Linked List problems. While Linked Lists felt smooth, I need to strengthen my BFS, DFS, and tree traversal strategies.


๐Ÿ“Œ Problems Solved Today

1๏ธโƒฃ Invert Binary Tree (โœ… Easy)

๐Ÿ‘‰ Problem: Given a binary tree, invert it (swap left and right children at every node).
๐Ÿ”น Approach: Used a recursive DFS approach to swap left and right subtrees at each node. An iterative BFS approach using a queue also works.

2๏ธโƒฃ Maximum Depth of Binary Tree (โœ… Easy)

๐Ÿ‘‰ Problem: Find the maximum depth (height) of a binary tree.
๐Ÿ”น Approach: Used DFS recursion to calculate the depth of left and right subtrees and took the maximum. An iterative BFS approach using level-order traversal also works.

3๏ธโƒฃ Diameter of Binary Tree (โœ… Easy)

๐Ÿ‘‰ Problem: Find the longest path between any two nodes in a binary tree.
๐Ÿ”น Approach: Used DFS recursion to compute the depth of subtrees and maintain a global variable to track the longest path.

4๏ธโƒฃ Balanced Binary Tree (โœ… Easy)

๐Ÿ‘‰ Problem: Check if a binary tree is height-balanced (i.e., the depth of left and right subtrees never differs by more than 1).
๐Ÿ”น Approach: Used DFS recursion, calculating height and checking balance condition at each node.

5๏ธโƒฃ Same Tree (โœ… Easy)

๐Ÿ‘‰ Problem: Given two binary trees, check if they are identical.
๐Ÿ”น Approach: Used DFS recursion to compare corresponding nodes of both trees.

6๏ธโƒฃ Subtree of Another Tree (โœ… Easy)

๐Ÿ‘‰ Problem: Check if a given tree is a subtree of another tree.
๐Ÿ”น Approach: Used DFS recursion, checking if two trees are the same at any node and recursively searching the left and right subtrees.

7๏ธโƒฃ Lowest Common Ancestor of a Binary Search Tree (โœ… Medium)

๐Ÿ‘‰ Problem: Given a BST and two nodes, find their lowest common ancestor.
๐Ÿ”น Approach: Used iterative BST traversal, moving left or right based on the values of the nodes.

8๏ธโƒฃ Binary Tree Level Order Traversal (โœ… Medium)

๐Ÿ‘‰ Problem: Return a list of values for each level of the binary tree.
๐Ÿ”น Approach: Used BFS with a queue to traverse level by level.


๐Ÿ’ก Key Takeaways & Next Steps

โœ… Trees & recursion feel intuitive but need to work on BFS/DFS more.
โœ… Linked Lists were easier to work with but should focus on more complex problems.
โœ… Next, Iโ€™ll work on graph traversal techniques and advanced Linked List-based algorithms.

๐Ÿ“Œ Plan for tomorrow:
๐Ÿ”น BFS & DFS in graphs
๐Ÿ”น More Linked List-based problems
๐Ÿ”น Some Medium/Hard tree problems

So far, so good! ๐Ÿ’ช Let's keep it going. ๐Ÿš€

0
Subscribe to my newsletter

Read articles from Tennis Kumar C directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Tennis Kumar C
Tennis Kumar C