#binarytree wyniki wyszukiwania
Day 64 of DSA 🌳 Today I learned Preorder, Inorder, and Postorder Tree Traversals using recursion. It’s amazing how just a few lines of code can perform such magical operations on a tree — absolutely mind-blowing! ⚡🔥 #DSA #BinaryTree #Recursion #CodingJourney #100DaysOfCode
Day 74 of DSA 🌳 Solved the Balanced Binary Tree problem today. Learned how to check if a binary tree is height-balanced using a bottom-up DFS approach — efficient and elegant! 💡 #100DaysOfCode #DSA #BinaryTree
🗓️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)
✅ 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
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 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 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
✅ 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 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
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 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 65/100: Cracking Binary Tree Problems with Java 94. Binary Tree Inorder Traversal 144. Binary Tree Preorder Traversal #100DaysOfCode #JavaDeveloper #BinaryTree #PreorderTraversal #DSA #Recursion #DepthFirstSearch #LeetCode #ProblemSolving #CleanCode #TechCareer #connect
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
✅Revised Level Order Traversal on @geeksforgeeks 🌿 👨💻Clean logic, calm mind, steady progress ✨ #DSA #GFG #BinaryTree #CodingJourney #100DaysOfCode
Check out this study on bias in weighted least absolute deviation estimation for BAR(1) models—commonly used in #BinaryTree data such as cell lineage analyses. 📉Authors introduce two bootstrap-based bias-corrected estimators, which greatly reduce bias 📖 brnw.ch/21wXFCr
Today's Learning 🌱 Revising Binary Trees – Take U Forward (TUF) #DSA #BinaryTree #Striver #TakeUForward #CodingJourney
Ever wondered what a binary tree looks like from the right side? 🌳 Here’s how to solve LeetCode 199 – Binary Tree Right Side View using DFS in C++! 🎥 Watch now 👉 youtu.be/a3IiFVr-15A #LeetCode #Cplusplus #BinaryTree #CodingInterview #LANAcademy
Two binary trees — same or not? Most people guess wrong the first time 👀 Watch this step-by-step C++ explanation and see how recursion solves it cleanly. 🎥 youtu.be/OUmBf10UDLA #LeetCode #Cplusplus #BinaryTree #CodingInterview #LANAcademy #learnprogramming
youtube.com
YouTube
Are These Trees the Same? 🌿 | LeetCode 872 in C++
🌟 Day 225/∞ 🚀 Solved Count Complete Tree Nodes 🌳🔢 💡 Used DFS for basic counting and an optimized binary search + height check approach for complete trees. Time Complexity: O((log n)²) | Space: O(h) ⚡ #LeetCode #DSA #BinaryTree #BinarySearch #DFS #CodeEveryday #KeepCoding
Day 74 of DSA 🌳 Solved the Balanced Binary Tree problem today. Learned how to check if a binary tree is height-balanced using a bottom-up DFS approach — efficient and elegant! 💡 #100DaysOfCode #DSA #BinaryTree
Day 64 of DSA 🌳 Today I learned Preorder, Inorder, and Postorder Tree Traversals using recursion. It’s amazing how just a few lines of code can perform such magical operations on a tree — absolutely mind-blowing! ⚡🔥 #DSA #BinaryTree #Recursion #CodingJourney #100DaysOfCode
🗓️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
#Day176/365 From @striver_79’s A2Z Sheet 🌳 1️⃣ Serialize and Deserialize Binary Tree #DSA #BinaryTree
✅ 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
✅ 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
#BinaryTree #DSA todays potd: => check balanced tree(if the height difference between the left and right subtrees of every node is at most 1) =>check identical =>check sumtree(root->data=left+right subtrees) with tc of O(n) also revised some queue concepts
#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 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 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
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 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
Today solve 2 problems on Leet Code 1.[404] Sum of Left Leaves 2.[112] Path Sum #DSA #binarytree #java #coding #ProblemSolving
Today solve 3 problems on Leet Code 1. [95] Unique Binary Search Tree 2. [98] Validate Binary Search Tree 3. [129] Sum Root to Leaf Numbers #DSA #binarytree #java #coding #ProblemSolving
Day 85 of #geekstreak2024 🔹 Inorder Traversal 🔹 Approach: Recursion 🔹 TC: O(N), SC: O(N) (Aux Stack) 🔹 Left → Root → Right #gfg160 #BinaryTree #DSA
Day 87 of #geekstreak2024 🔹 Max Path Sum (Any Node to Any Node) 🔹 Approach: Recursively compute max sum at each node, considering left & right subtrees. 🔹 TC: O(N), SC: O(H) #gfg160 #BinaryTree #DSA
Something went wrong.
Something went wrong.
United States Trends
- 1. Chris Paul 7,803 posts
- 2. Pat Spencer 2,674 posts
- 3. Kerr 5,639 posts
- 4. Podz 3,301 posts
- 5. Jimmy Butler 2,659 posts
- 6. Shai 15.7K posts
- 7. Seth Curry 4,984 posts
- 8. The Clippers 10.6K posts
- 9. Hield 1,590 posts
- 10. Carter Hart 4,121 posts
- 11. #DubNation 1,433 posts
- 12. Lawrence Frank N/A
- 13. #SeanCombsTheReckoning 5,196 posts
- 14. Mark Pope 1,970 posts
- 15. #AreYouSure2 133K posts
- 16. Kuminga 1,498 posts
- 17. Brandy 8,334 posts
- 18. Derek Dixon 1,314 posts
- 19. Elden Campbell N/A
- 20. Connor Bedard 2,459 posts