Explore tweets tagged as #BinaryTree
@M_Codes6
Muzamil Naik
23 days
Day 92 โœ… | #gfg160 Challenge @geeksforgeeks.๐Ÿ” Solved: Fix Swapped Nodes in BST.๐ŸŽฏ Approach: Single-pass Inorder Traversal using Recursion and 4 Pointers.๐Ÿ“ˆ T: O(n) | S: O(h) (due to recursion stack).๐Ÿ‘‡ More in ALT. #Python #DSA #100DaysOfCode #GeekStreak2025 #BinaryTree
Tweet media one
Tweet media two
0
0
12
@M_Codes6
Muzamil Naik
1 month
Day 80 โœ… | #gfg160 Challenge @geeksforgeeks.๐Ÿ”Solved: Level Order Traversal ๐ŸŒณ.๐ŸŽฏGoal: Traverse a binary tree level by level from left to . right.๐ŸŽฏApproach: Breadth-First Search (BFS).๐Ÿ“ˆ T: O(n) | S: O(n) โ€” . ๐Ÿ‘‡ALT. #Python #DSA #100DaysOfCode #GeekStreak2025 #BFS #BinaryTree
Tweet media one
Tweet media two
0
0
10
@M_Codes6
Muzamil Naik
1 month
Day 84 โœ… | #gfg160 Challenge @geeksforgeeks.๐Ÿ”Solved: Construct Tree from Inorder & Preorder ๐ŸŒณ.โœ… Using: Pre-order traversal & Hash map.๐ŸŽฏ Goal: Rebuild binary tree from traversal arrays .๐Ÿ“ˆ T: O(n) | S: O(n). ๐Ÿ‘‡ More ALT. #Python #DSA #BinaryTree #100DaysOfCode #GeekStreak2025
Tweet media one
Tweet media two
0
0
7
@M_Codes6
Muzamil Naik
22 days
Day 93 โœ… | #gfg160 Challenge @geeksforgeeks.๐Ÿ” Solved: Lowest Common Ancestor in a BST.๐ŸŽฏ Goal: Find the LCA of two nodes in a Binary Search Tree.๐ŸŽฏ Approach: Iterative.๐Ÿ“ˆ T: O(h) | S: O(1) .๐Ÿ‘‡ More in ALT. #Python #DSA #100DaysOfCode #GeekStreak2025 #BinaryTree #BST
Tweet media one
Tweet media two
0
0
2
@XRodgriues26348
Xavier Rodgriues
2 days
๐Ÿง  Yesterday was a power-packed session with @ali_In_bits sir !.๐Ÿš€ Got an amazing explanation of the BFS algorithm and solved multiple tree questions hands-on. Feeling way more confident with level order traversal & queues! ๐Ÿ’ช.#BFS #BinaryTree #javascriptๅ…ฅ้–€่ฌ›ๅบง #DSA
Tweet media one
0
1
13
@Lakshay81442161
Lakshay Gupta
2 days
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
Tweet media one
Tweet media two
Tweet media three
Tweet media four
1
1
16
@bitlith
Abhishek Rana
2 days
Day 86 of #GFG160.๐ŸŒณ Tree Boundary Traversal.Printed the boundary in this order:.1๏ธโƒฃ Left boundary (excluding leaves).2๏ธโƒฃ Leaf nodes (L to R).3๏ธโƒฃ Right boundary (excluding leaves, reversed).๐Ÿ•’ O(n) | ๐Ÿ“ฆ O(h).#DSA #Java #BinaryTree #100DaysOfCode #GFG160
Tweet media one
0
0
3
@M_Codes6
Muzamil Naik
26 days
Day 89 โœ… | #gfg160 Challenge @geeksforgeeks.๐Ÿ” Solved: Check if BT is a BST. ๐ŸŽฏ Approach: Morris Inorder Traversal. ๐Ÿ“ˆ T: O(n) | S: O(1) . ๐Ÿ‘‡More in ALT. #Python #DSA #100DaysOfCode #GeekStreak2025 #BinaryTree #BST
Tweet media one
Tweet media two
0
0
4
@JAI_KUMAR_007
JAIKUMAR DEWANGAN
17 days
๐Ÿ”„ Bottom-Up Level Order Traversal (BFS) ๐ŸŒณ.๐Ÿ“ฅ Traverse level-by-level, but store from bottom. ๐Ÿง  TC: O(2n).๐Ÿ“ฆ SC: O(n) (for queue and result). #DSA #BinaryTree #LeetCode #TUF #GFG #X #Coding
Tweet media one
1
0
10
@thakral_garvit
Garvit Thakral
14 days
๐Ÿš€ Just solved 4 more DSA problems:. BST Iterator.Recover BST.BST from Preorder.Populating Next Right Pointers. Grinding LeetCode every day โ€” step by step!. #LeetCode #100DaysOfCode #DSA #Coding #Java #BinaryTree #DataStructures #Algorithms
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
5
@beyondbarrier_s
Aparna Singh
1 month
Day 30/100 of #100DaysOfCode.Solved: Find Target Sum in BST ๐ŸŽฏ.Used inorder traversal to convert BST to sorted array.โœ…Applied 2-pointer technique to find pair with sum = k.โœ…Strengthened BST + array logic.#LeetCode #CPP #DSA #BinaryTree #Coding #ProblemSolving
Tweet media one
Tweet media two
3
0
39
@1tushartwt4
Tushar Saxena
26 days
Day 16 of #100DaysOfCode .โœ… Todayโ€™s Problems: .1. Valid Number.2. Count the Number of Arrays with K Matching Adjacent Elements(POTD) . #DSA #Algorithms #VIT #POTD #Strings #Binarytree #DrGVishwanathan #Leetcode #codedaily #DP
Tweet media one
Tweet media two
0
1
3
@beyondbarrier_s
Aparna Singh
1 month
Day 27/100 of #100DaysOfCode.Solved โ€œConstruct Binary Tree from Inorder & Postorderโ€ using O(n) approach. โœ…Used unordered_map for fast index lookup.โœ…Recursive tree building with postIndex backtracking.โœ…Clean & efficient buildTree implementation!.#LeetCode #DSA #BinaryTree
Tweet media one
Tweet media two
1
1
47
@itscrazylokesh
lokesh choudhary Programmer
1 month
๐Ÿ“… ๐ƒ๐š๐ฒ-๐Ÿ๐Ÿ”๐Ÿ’: ๐ƒ๐ž๐ž๐ฉ ๐ƒ๐ข๐ฏ๐ž ๐ข๐ง๐ญ๐จ ๐๐ข๐ง๐š๐ซ๐ฒ ๐“๐ซ๐ž๐ž๐ฌ ๐ŸŒณ๐Ÿ”. ๐†๐ข๐ญ๐ก๐ฎ๐›: #Day164 #DSA #BinaryTree #Recursion #TreeTraversal #LeetCode #InterviewPrep #CodingDaily #ZigzagTraversal #BalancedTree
Tweet media one
0
0
4
@saxenajahnvi7
Jahnvi Saxena
20 days
"Day 93 of #gfg160 #geekstreak2025!.Found the Lowest Common Ancestor (LCA) - because every family tree needs a reunion point! ๐ŸŒณ #DSA #BinaryTree #CodingJourney
Tweet media one
7
0
46
@Abhirudra3213
Aแ‚ฆิ‹ฮนษณฮฑส‹ Sฮนษณษ ิ‹
20 days
Day 85 of #gfg160 โœ… | #GeekStreak2025.๐ŸŒฟ Solved: Inorder Traversal of Binary Tree.๐Ÿ“š Method: Recursive Traversal (Left โžก๏ธ Root โžก๏ธ Right).โฑ Time: O(N), Space: O(H).๐Ÿง  Key Idea: Classic DFS approach using recursion.#DSA #Java #BinaryTree #Recursion #GeeksForGeeks #DailyDSA
Tweet media one
5
0
18
@Mohd_Saqib_
Mohd Saqib
8 months
๐Ÿš€ Day 126 of #180DaysOfCoding ๐Ÿš€. Today's Focus:.โœ… Minimum Time to Burn a Binary Tree from a Node. I tackled the problem of calculating the minimum time to burn a binary tree starting from a given node. #BinaryTree #DataStructures #Algorithms #Java #LeetCode #100DaysOfCode #DSA
Tweet media one
0
1
4
@Mohd_Saqib_
Mohd Saqib
7 months
๐Ÿš€ Day 139 of #180DaysOfCoding ๐Ÿš€. โœ… 235. Lowest Common Ancestor of a Binary Search Tree. Today, I explored finding the Lowest Common Ancestor (LCA) in a Binary Search Tree ๐ŸŒณ. #BinaryTree #BST #Java #LeetCode #100DaysOfCode #DSA #letsconnect #connect
Tweet media one
1
0
16
@SilanSoftware
Silan Software Pvt. Ltd.
1 month
DSA using JAVA:."Excited to share an article on Binary Tree Traversal Implementation in Java!.#Java #DataStructures #Algorithms #BinaryTree #SoftwareDevelopment.
Tweet media one
0
0
0