#binarytree search results
Day 29 #LeetCode75 Problem: 236. Lowest Common Ancestor Idea: Find the deepest node that’s ancestor of both p & q Return NULL if node is NULL. Return node if it’s p or q. Explore left & right. If both return non-NULL → current node is LCA. #DSA #BinaryTree #CodingJourney #MIET


Day 4 – Trees🌳 ✅ Bottom View of Binary Tree ✅ Right/Left View of Binary Tree ✅ Symmetric Binary Tree ✅ Root-to-Node Path in Binary Tree PS: After 2–3 problems I start feeling bored/frustrated Need to fix this. Any suggestions, folks? #coding #DSA #BinaryTree #Developer



Solved two similar-looking but fundamentally different #BinaryTree problems! 1: Largest BST Subtree (by size) 2: LeetCode 1373: Maximum Sum BST in Binary Tree🔍 Key Insight: #100DaysOfCode #LeetCode #Java #DSA


👉Day 77 of #100DaysOfDSAWithJuicy 📌 Q: Height Balanced Binary Tree & Height of a Binary Tree (Tree) Check if a tree is height-balanced 🌳 and find its height 🌿 using recursion in O(n) time. #DSA #BinaryTree #Coding #100DaysOfCode

🗓️Day 85/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree ✅Lowest Common Ancestor #binarysearchtree ✅Introduction ✅Insertion ✅Searching ✅Sorted Elements ✅Minimum Element 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #DSA #geeksforgeeks #gfg




Today 3 Problem solved on Leetcode. 1. Root Equals Sum of Children 2.Even Odd Tree 3. Count Good Nodes in Binary Tree #DSA #BinaryTree #JAVA #DailyCoding #ProblemSolving



#BinaryTree #DSA POTD: minimum time to burn the tree from a given node Approach: =>create a map to track each node's parent =>locate the target node =>From the target node, burn its left, right, and parent then count all levels by boolean var. with complexity of O(n)


Today's @geeksforgeeks POTD — Maximum Non-Adjacent Nodes Sum Solved in 7 mins Used post-order DFS #geeksforgeeks #POTD #BinaryTree #DP #DSA #TreeProblems

POD ✅: Root to Leaf Paths – Solved! I had solved this one a long time ago, but revisited it today. Tried 2–3 approaches, including DFS & BFS. Relearned the trade-offs, recursion tricks, and how traversal order affects the output. Feels good to crack it again! #DSA #BinaryTree

Day 29 #LeetCode75 Problem: 236. Lowest Common Ancestor Idea: Find the deepest node that’s ancestor of both p & q Return NULL if node is NULL. Return node if it’s p or q. Explore left & right. If both return non-NULL → current node is LCA. #DSA #BinaryTree #CodingJourney #MIET


🗓️Day 85/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree ✅Lowest Common Ancestor #binarysearchtree ✅Introduction ✅Insertion ✅Searching ✅Sorted Elements ✅Minimum Element 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #DSA #geeksforgeeks #gfg




#Day378 of #400DaysOfDSA Topics and Learnings: #BinaryTree Problems Revised: 201. #LeetCode #101 : Symmetric Tree Approach: Used #TreeTraversal to solve this Complexiy Analysis: TC: O(N) SC: O(h)

🚀 DSA Series #6 — Binary Trees & Binary Search Trees 🌳 They’re more than just “data structures” — they’re how logic branches, decisions form, and recursion truly clicks. 👇 Dive in 🔗medium.com/@vinayakmalviy… #DSA #BinaryTree #BST #CodingJourney #ProblemSolving #LearnInPublic
Today's @geeksforgeeks POTD — Maximum Non-Adjacent Nodes Sum Solved in 7 mins Used post-order DFS #geeksforgeeks #POTD #BinaryTree #DP #DSA #TreeProblems

#Day372 of #400DaysOfDSA Topics and Learnings: #BinaryTree, #BreadthFirstSearch Problems Revised: 195. #LeetCode #127 : Word Ladder Approach: Used #BreadthFirstSearch to solve this Complexiy Analysis: TC: O(N) SC: O(N)

#Day371 of #400DaysOfDSA Topics and Learnings: #BinaryTree Problems Revised: 194. #LeetCode #222 : Count Complete Tree Nodes Approach: Used Height of Left and Right Subtrees to solve this Complexiy Analysis: TC: O(log N * log N) SC: O(log N)

🧠GFG Problem — ZigZag Tree Traversal ⏱️Solved in: 23.31 mins 💡Approach: Level Order Traversal + Direction Toggle ⏳Time Complexity: O(n) 💾Space Complexity: O(n) (queue + level list) 📅Date - > 10-10-2025 #GFG #DSA #BinaryTree #ZigZagTraversal #Coding #100DaysOfCode




Binary tree step-by-step interactive visualization, insert and delete. Try it your self, link in the comment. #DSA #binarytree #visualization
Day 29 #LeetCode75 Problem: 236. Lowest Common Ancestor Idea: Find the deepest node that’s ancestor of both p & q Return NULL if node is NULL. Return node if it’s p or q. Explore left & right. If both return non-NULL → current node is LCA. #DSA #BinaryTree #CodingJourney #MIET


Day 4 – Trees🌳 ✅ Bottom View of Binary Tree ✅ Right/Left View of Binary Tree ✅ Symmetric Binary Tree ✅ Root-to-Node Path in Binary Tree PS: After 2–3 problems I start feeling bored/frustrated Need to fix this. Any suggestions, folks? #coding #DSA #BinaryTree #Developer



👉Day 77 of #100DaysOfDSAWithJuicy 📌 Q: Height Balanced Binary Tree & Height of a Binary Tree (Tree) Check if a tree is height-balanced 🌳 and find its height 🌿 using recursion in O(n) time. #DSA #BinaryTree #Coding #100DaysOfCode

✅ Day 146 – Diameter of Binary Tree Solved: Diameter of Binary Tree (LC 543) Used DFS with post-order traversal to compute max path length 🔄 Clean logic, passed all cases in 0 ms! 💡 #100DaysOfCode #LeetCode #BinaryTree

Day 42 🚀 – Recursive Tree Traversals 🌳 ✅ Preorder: Root → Left → Right ✅ Inorder: Left → Root → Right ✅ Postorder: Left → Right → Root @akshaymarch7 #LeetCode #BinaryTree #DSA #Recursion

Solved two similar-looking but fundamentally different #BinaryTree problems! 1: Largest BST Subtree (by size) 2: LeetCode 1373: Maximum Sum BST in Binary Tree🔍 Key Insight: #100DaysOfCode #LeetCode #Java #DSA


Today solve 2 problems on Leet Code 1. [230] Kth Smallest Element in BST 2. [236] Lowest Common Ancestor of a Binary Tree #DSA #BinaryTree #JAVA #ProblemSolving #Coding
![cha84587's tweet image. Today solve 2 problems on Leet Code
1. [230] Kth Smallest Element in BST
2. [236] Lowest Common Ancestor of a Binary Tree
#DSA #BinaryTree #JAVA #ProblemSolving #Coding](https://pbs.twimg.com/media/Gz-i4haWQAEeowG.jpg)
![cha84587's tweet image. Today solve 2 problems on Leet Code
1. [230] Kth Smallest Element in BST
2. [236] Lowest Common Ancestor of a Binary Tree
#DSA #BinaryTree #JAVA #ProblemSolving #Coding](https://pbs.twimg.com/media/Gz-i4hjW8AAm3Sw.jpg)
Today 3 Problem solved on Leetcode. 1. Root Equals Sum of Children 2.Even Odd Tree 3. Count Good Nodes in Binary Tree #DSA #BinaryTree #JAVA #DailyCoding #ProblemSolving



Something went wrong.
Something went wrong.
United States Trends
- 1. Ohtani 214K posts
- 2. Dodgers 259K posts
- 3. World Series 60.9K posts
- 4. Carson Beck 16.5K posts
- 5. Miami 100K posts
- 6. Louisville 28.2K posts
- 7. Emiru 6,926 posts
- 8. Brewers 56.3K posts
- 9. Nebraska 17.8K posts
- 10. Babe Ruth 3,384 posts
- 11. NLCS 61.2K posts
- 12. NOCHE IS BACK 25.6K posts
- 13. Rhule 4,665 posts
- 14. Massie 30.2K posts
- 15. 3 HRs 10.2K posts
- 16. #BostonBlue 7,814 posts
- 17. #SmackDown 58.1K posts
- 18. George Santos 83.7K posts
- 19. Minnesota 47.4K posts
- 20. 10 Ks 4,705 posts