#binarytree search results
🚀 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
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 78/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree in #DSA ✅Inorder ✅Preorder ✅Postorder ✅Level Order (Breadth First Search) #WebDev ✅Revised #ExpressJs 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
Day 159 – DSA Journey 🌳 Today I tackled: • 🔥 Burning Tree • 🌳 Max Path Sum Between Two Nodes Both deepened my grasp of recursion and tree traversal — powerful tools for complex problems! 💡 #BinaryTree #Algorithms #Coding #DataStructures #LearningJourney
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 158 – DSA Journey 🌳 Learned: • Inorder, Preorder & Postorder (Morris) • Flatten Binary Tree to Linked List Morris Traversal — elegant & space-efficient! 🚀 #DSA #BinaryTree #MorrisTraversal #Coding
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
🗓️Day 77/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree in #DSA ✅Type of Trees ✅Introduction to Binary Tree ✅Types of Binary Tree #MongoDB in #WebDev ✅Revised 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
#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
🚀 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 78/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree in #DSA ✅Inorder ✅Preorder ✅Postorder ✅Level Order (Breadth First Search) #WebDev ✅Revised #ExpressJs 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
🗓️Day 77/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree in #DSA ✅Type of Trees ✅Introduction to Binary Tree ✅Types of Binary Tree #MongoDB in #WebDev ✅Revised 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
Day 124 🌳 Solved key Binary Tree problems today: ✅ Level Order Traversal (BFS) – iterative ✅ Symmetric Tree ✅ Path Sum ✅ Invert Binary Tree Recursion + logic + structure = 🔥 #DSA #BinaryTree #Recursion #Leetcode #100DaysOfCode #Sheryians
Day 159 – DSA Journey 🌳 Today I tackled: • 🔥 Burning Tree • 🌳 Max Path Sum Between Two Nodes Both deepened my grasp of recursion and tree traversal — powerful tools for complex problems! 💡 #BinaryTree #Algorithms #Coding #DataStructures #LearningJourney
#Day176/365 From @striver_79’s A2Z Sheet 🌳 1️⃣ Serialize and Deserialize Binary Tree #DSA #BinaryTree
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 159 – DSA Journey 🌳 Today I tackled: • 🔥 Burning Tree • 🌳 Max Path Sum Between Two Nodes Both deepened my grasp of recursion and tree traversal — powerful tools for complex problems! 💡 #BinaryTree #Algorithms #Coding #DataStructures #LearningJourney
🗓️Day 77/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree in #DSA ✅Type of Trees ✅Introduction to Binary Tree ✅Types of Binary Tree #MongoDB in #WebDev ✅Revised 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
🚀 #GFG160 – Day 84: All Paths That Sum Up! 🧮🌿 Solved the K Sum Paths problem today ✔️ K Sum Paths in Binary Tree #BinaryTree #KSumPaths #DFS #Backtracking #TreeProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
Day 87 of #100DaysOfCode I resumed my DSA journey after college! Implemented Tree Traversals on a Binary Tree: Preorder, Inorder, Postorder, Level Order traversal Pushed the code to GitHub. Did less due to college work, but more to come tomorrow! #Cplusplus #BinaryTree #DSA
✅ Day 145 – Maximum Depth of Binary Tree Solved: Max Depth of Binary Tree (LC 104) Used BFS to compute tree depth efficiently 🌳 All test cases passed with 0 ms runtime ⚡ #100DaysOfCode #LeetCode #BinaryTree
#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)
🗓️Day 78/100 #100DaysOfCode with @GeeksforGeeks 🚀 #BinaryTree in #DSA ✅Inorder ✅Preorder ✅Postorder ✅Level Order (Breadth First Search) #WebDev ✅Revised #ExpressJs 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
Day 125 🌲 Solved some cool Binary Tree view-based problems: 📏 Diameter of Binary Tree 👈 Left View 👉 Right View 🔝 Top View 🔻 Bottom View Visualizing trees from all sides! #DSA #BinaryTree #Views #Recursion #100DaysOfCode #Sheryians
✅ Day 143 – Tree Traversals Solved: Preorder (LC 144) Inorder (LC 94) Postorder (LC 145) Mastered recursive DFS & traversal logic 💡 🧪 All test cases passed ✅ #100DaysOfCode #LeetCode #BinaryTree
✅ 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 154 – #DSA 🚀 Today I learned: • 𝗟𝗲𝗳𝘁 & 𝗥𝗶𝗴𝗵𝘁 𝗩𝗶𝗲𝘄 𝗼𝗳 𝗕𝗶𝗻𝗮𝗿𝘆 𝗧𝗿𝗲𝗲 • 𝗧𝗼𝗽 & 𝗕𝗼𝘁𝘁𝗼𝗺 𝗩𝗶𝗲𝘄 Amazing how different perspectives reveal unique insights into tree structures. 🚀 #DSA #BinaryTree #100DaysOfCode #ProblemSolving
✅ Day 144 – Binary Tree Level Order Traversal Solved: Level Order Traversal (LC 102) Mastered BFS using queue & level-wise traversal 🌲 🧪 All test cases passed ✅ #100DaysOfCode #LeetCode #BinaryTree
Something went wrong.
Something went wrong.
United States Trends
- 1. D’Angelo 130K posts
- 2. D’Angelo 130K posts
- 3. Brown Sugar 11.8K posts
- 4. Black Messiah 5,160 posts
- 5. Powell 32.9K posts
- 6. #GoodTimebro 1,446 posts
- 7. Happy Birthday Charlie 110K posts
- 8. Voodoo 12K posts
- 9. How Does It Feel 5,919 posts
- 10. Rest in Power 12.3K posts
- 11. #BornOfStarlightHeeseung 76.4K posts
- 12. #csm217 3,837 posts
- 13. Osimhen 73.6K posts
- 14. #PortfolioDay 8,002 posts
- 15. Alex Jones 25K posts
- 16. Pentagon 92.6K posts
- 17. Sandy Hook 9,589 posts
- 18. Neo Soul 1,328 posts
- 19. Jill Scott N/A
- 20. Rwanda 52.7K posts