#binarytree resultados da pesquisa
🗓️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 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



🚀 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 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



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

#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)


🚀 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 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 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 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 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




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 42 🚀 – Recursive Tree Traversals 🌳 ✅ Preorder: Root → Left → Right ✅ Inorder: Left → Root → Right ✅ Postorder: Left → Right → Root @akshaymarch7 #LeetCode #BinaryTree #DSA #Recursion

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)
✅ 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

#Day176/365 From @striver_79’s A2Z Sheet 🌳 1️⃣ Serialize and Deserialize Binary Tree #DSA #BinaryTree

Something went wrong.
Something went wrong.
United States Trends
- 1. D’Angelo 178K posts
- 2. D’Angelo 178K posts
- 3. Brown Sugar 15K posts
- 4. Black Messiah 7,033 posts
- 5. Voodoo 14.8K posts
- 6. #GoodTimebro 1,459 posts
- 7. Happy Birthday Charlie 118K posts
- 8. Powell 36.3K posts
- 9. How Does It Feel 6,853 posts
- 10. #PortfolioDay 9,437 posts
- 11. Osimhen 112K posts
- 12. Pentagon 96.7K posts
- 13. #BornOfStarlightHeeseung 80.8K posts
- 14. Young Republicans 3,384 posts
- 15. Neo-Soul 16.4K posts
- 16. Alex Jones 27.3K posts
- 17. Sandy Hook 10.9K posts
- 18. Jill Scott 1,120 posts
- 19. Untitled 6,003 posts
- 20. CJGJ N/A