#binarysearchtree résultats de recherche
🗓️Day 86/100 #100DaysOfCode with @GeeksforGeeks 🚀 #binarysearchtree in #DSA ✅Check for BST → Using Specified Range → Using Inorder Traversal → Using Morris Traversal 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
🗓️Day 87/100 #100DaysOfCode with @GeeksforGeeks 🚀 #binarysearchtree in #DSA ✅Lowest Common Ancestor in BST ✅Sorted Array to Balanced BST 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg #100DaysOfcoding #coding #java
Day 54–60 ✅ | Step 14: Binary Search Trees 🌲 ✔️ Concepts: Search, Min/Max, Intro ✔️ Practice: Insert, Delete, K-th smallest, LCA, Merge 2 BSTs, Recover BST & more 🔒 BST (16/16) completed 🚀 #100DaysOfCode #DSA #BinarySearchTree
Day 160 – #DSA 🌳 Today I explored Binary Search Tree (BST) and learned its: • Implementation • Insertion • Deletion • Search operations A solid step toward mastering efficient data organization and lookup! 💡 #BinarySearchTree #DSA #Coding #Algorithms #LearningJourney
📚 On my #DSA journey, tackled BSTs today! ✅ LeetCode 700 – Iterative search, clean pass. ✅ LeetCode 701 – Minor tweak, accepted! Balancing college & code daily. Loop > Recursion? 🤔👇 #100DaysOfCode #BinarySearchTree #TechTwitter #CodeNewbie
Day 165 - #DSA 🌳 Today I solved: 🔹 Largest BST in a Binary Tree 🔹 Maximum Sum BST in a Binary Tree Implemented both using a Box class for clean recursion and achieved O(N) efficiency. #DSA #BinarySearchTree #LeetCode #ProblemSolving
✅ Day 74 of #100DaysOfDSA 📍LC 701: Insert into a Binary Search Tree • Created new TreeNode if root is null • Compared value with current node • Recurred left or right accordingly • Time: O(h), Space: O(h) #BinarySearchTree
Just took a mock test for BST revision—90 minutes, 3 questions. Managed to solve 2/3 ✅ The one I couldn’t crack? Unique BSTs 🌳 Spent time understanding it post-test #DSA #BinarySearchTree #CodingJourney
✅ Day 120 of #150DaysOfDSA 📍 LC 538: Convert BST to Greater Tree 🌳 Used reverse inorder (R→Root→L) to maintain a running sum and update each node with the total of all greater values. BST → suffix sum tree 👌 O(n) time | O(h) space #BinarySearchTree #Recursion
🚀 Day 141 of #180DaysOfCoding 🚀 ✅ 173. Binary Search Tree Iterator (Implemented next() and hasNext()) ✅ 653. Two Sum IV - Input is a BST (Using Inorder Traversal & Two Pointers) #BinarySearchTree #BST #Java #LeetCode #100DaysOfCode #DSA #letsconnect #connect
🚀 Day 73 of #100DaysOfCodingChallenge 701. Insert into a Binary Search Tree 230. Kth Smallest Element in a BST #Day73 #BinarySearchTree #DSA #JavaCoding #LeetCode #CodingInterviewPrep #JavaDeveloper #SoftwareEngineerLife #ProgrammerMindset #TechCareers #ProblemSolvingSkill
🚀 Day 143 of #180DaysOfCoding 🚀 ✅ 173. Binary Search Tree Iterator (Revised) Revisited the BST Iterator problem today, implementing the next() and hasNext() functions with an optimized approach. 🌳 #BinarySearchTree #BST #LeetCode #Java #DSA #100DaysOfCode #letsconnect
🚀 Day 140 of #180DaysOfCoding 🚀 ✅ 1008. Construct Binary Search Tree from Preorder Traversal Today, I tackled constructing a Binary Search Tree (BST) 🌳 from preorder traversal. #BinarySearchTree #BST #Recursion #Java #LeetCode #100DaysOfCode #DSA #letsconnect #connect
🚀 Day 136 of #180DaysOfCoding 🚀 ✅ 701. Insert into a Binary Search Tree (Revised) Today, I revisited the concept of inserting a node into a Binary Search Tree (BST) 🌳. #BinarySearchTree #BST #DataStructures #Algorithms #Java #LeetCode #100DaysOfCode #DSA #letsconnect
🚀 Day 145 of #180DaysOfCoding 🚀 ✅ 450. Delete Node in a BST (Revised) Revisited the challenge of deleting nodes in a Binary Search Tree while maintaining its structure. #BinarySearchTree #DSA #LeetCode #Java #100DaysOfCode #letsconnect #connect
🚀 #GFG160 – Day 87: Fixing the Broken BST! 🛠️🌳 Solved the Fix Two Swapped Nodes in a BST problem today ✔️ Fixing Two Nodes of a BST #BinarySearchTree #InorderTraversal #TreeRecovery #BSTFix #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
🗓️Day 87/100 #100DaysOfCode with @GeeksforGeeks 🚀 #binarysearchtree in #DSA ✅Lowest Common Ancestor in BST ✅Sorted Array to Balanced BST 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg #100DaysOfcoding #coding #java
🗓️Day 86/100 #100DaysOfCode with @GeeksforGeeks 🚀 #binarysearchtree in #DSA ✅Check for BST → Using Specified Range → Using Inorder Traversal → Using Morris Traversal 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
✅ Day 120 of #150DaysOfDSA 📍 LC 538: Convert BST to Greater Tree 🌳 Used reverse inorder (R→Root→L) to maintain a running sum and update each node with the total of all greater values. BST → suffix sum tree 👌 O(n) time | O(h) space #BinarySearchTree #Recursion
🗓️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 165 - #DSA 🌳 Today I solved: 🔹 Largest BST in a Binary Tree 🔹 Maximum Sum BST in a Binary Tree Implemented both using a Box class for clean recursion and achieved O(N) efficiency. #DSA #BinarySearchTree #LeetCode #ProblemSolving
Day 71 🚀 Solved: 1️⃣ Binary Tree Preorder Traversal( #144) 2️⃣ Two Sum IV - Input is a BST(#653) 3️⃣ Increasing Order Search Tree (#897) 4️⃣ Balance a Binary Search Tree (#1382) 5️⃣ Lowest Common Ancestor of a BST ( #235) #LeetCode #DSA #BinarySearchTree #100DaysOfCode
Day 160 – #DSA 🌳 Today I explored Binary Search Tree (BST) and learned its: • Implementation • Insertion • Deletion • Search operations A solid step toward mastering efficient data organization and lookup! 💡 #BinarySearchTree #DSA #Coding #Algorithms #LearningJourney
Today, I solved the question "98. Validate Binary Search Tree" on LeetCode using Go! #BinarySearchTree Happy LeetCoding!
I heard they invented zero in India. Maybe that's why. #H1B #binarysearchtree
Day 54–60 ✅ | Step 14: Binary Search Trees 🌲 ✔️ Concepts: Search, Min/Max, Intro ✔️ Practice: Insert, Delete, K-th smallest, LCA, Merge 2 BSTs, Recover BST & more 🔒 BST (16/16) completed 🚀 #100DaysOfCode #DSA #BinarySearchTree
99. Recover Binary Search Tree Leetcode problem solution using Golang. #LeetcodeMedium #BinarySearchTree
BST became a nightmare when I encountered this... Searching is lot more easier while using BST's log N base 2 time complexity , but it doesn't when you think about the worst case (log(n)). #DataStructures #Algorithms #BinarySearchTree #CodingLife #BigONotation #DevStruggles
Day 54–60 ✅ | Step 14: Binary Search Trees 🌲 ✔️ Concepts: Search, Min/Max, Intro ✔️ Practice: Insert, Delete, K-th smallest, LCA, Merge 2 BSTs, Recover BST & more 🔒 BST (16/16) completed 🚀 #100DaysOfCode #DSA #BinarySearchTree
🗓️Day 86/100 #100DaysOfCode with @GeeksforGeeks 🚀 #binarysearchtree in #DSA ✅Check for BST → Using Specified Range → Using Inorder Traversal → Using Morris Traversal 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg
🚀 Day 73 of #100DaysOfCodingChallenge 701. Insert into a Binary Search Tree 230. Kth Smallest Element in a BST #Day73 #BinarySearchTree #DSA #JavaCoding #LeetCode #CodingInterviewPrep #JavaDeveloper #SoftwareEngineerLife #ProgrammerMindset #TechCareers #ProblemSolvingSkill
Day 59–60 | #100DaysOfCode ✨ Learned key concepts in Binary Search Trees (BST): Delete a Node 🗑️ Print in Range 📏 Root to Leaf Paths 🌱 Validate BST ✅ Thanks to @ShradhaKhapra_ ma'am for the continuous guidance 🙌 #DSA #BinarySearchTree #CodingJourney #ApnaCollege #java
📚 On my #DSA journey, tackled BSTs today! ✅ LeetCode 700 – Iterative search, clean pass. ✅ LeetCode 701 – Minor tweak, accepted! Balancing college & code daily. Loop > Recursion? 🤔👇 #100DaysOfCode #BinarySearchTree #TechTwitter #CodeNewbie
Day 160 – #DSA 🌳 Today I explored Binary Search Tree (BST) and learned its: • Implementation • Insertion • Deletion • Search operations A solid step toward mastering efficient data organization and lookup! 💡 #BinarySearchTree #DSA #Coding #Algorithms #LearningJourney
🗓️Day 87/100 #100DaysOfCode with @GeeksforGeeks 🚀 #binarysearchtree in #DSA ✅Lowest Common Ancestor in BST ✅Sorted Array to Balanced BST 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #100DaysOfDSA #geeksforgeeks #gfg #100DaysOfcoding #coding #java
Just took a mock test for BST revision—90 minutes, 3 questions. Managed to solve 2/3 ✅ The one I couldn’t crack? Unique BSTs 🌳 Spent time understanding it post-test #DSA #BinarySearchTree #CodingJourney
🚀 Day 141 of #180DaysOfCoding 🚀 ✅ 173. Binary Search Tree Iterator (Implemented next() and hasNext()) ✅ 653. Two Sum IV - Input is a BST (Using Inorder Traversal & Two Pointers) #BinarySearchTree #BST #Java #LeetCode #100DaysOfCode #DSA #letsconnect #connect
✅ Day 74 of #100DaysOfDSA 📍LC 701: Insert into a Binary Search Tree • Created new TreeNode if root is null • Compared value with current node • Recurred left or right accordingly • Time: O(h), Space: O(h) #BinarySearchTree
🚀 Day 143 of #180DaysOfCoding 🚀 ✅ 173. Binary Search Tree Iterator (Revised) Revisited the BST Iterator problem today, implementing the next() and hasNext() functions with an optimized approach. 🌳 #BinarySearchTree #BST #LeetCode #Java #DSA #100DaysOfCode #letsconnect
🚀 Day 145 of #180DaysOfCoding 🚀 ✅ 450. Delete Node in a BST (Revised) Revisited the challenge of deleting nodes in a Binary Search Tree while maintaining its structure. #BinarySearchTree #DSA #LeetCode #Java #100DaysOfCode #letsconnect #connect
🚀 Day 78 of #100DaysOfCodingChallenge – Mastering BST Node Deletion with Recursion & Inorder Successor 703. Kth Largest Element in a Stream 450. Delete Node in a BST #BinarySearchTree #DSA #JavaProgramming #ProblemSolving #CodingChallenge #LeetCode #SoftwareEngineer #connect
🚀 Day74/100 Mastering BST Transformations |Turning Binary Search Trees into Greater Sum Trees 96. Unique Binary Search Trees 1038. Binary Search Tree to Greater Sum Tree #100DaysOfCodingChallenge #Day74 #BinarySearchTree #GreaterSum #DSA #LeetCode #JavaProgramming #connect
🚀 #GFG160 – Day 85: Finding the K-th Smallest! 🔍🌳 Solved the K-th Smallest Element in a BST problem today ✔️ K-th Smallest in BST #BinarySearchTree #InorderTraversal #KthSmallest #TreeProblems #GeeksforGeeks #100DaysOfCode #geekstreak2025 @geeksforgeeks
🚀 Day 136 of #180DaysOfCoding 🚀 ✅ 701. Insert into a Binary Search Tree (Revised) Today, I revisited the concept of inserting a node into a Binary Search Tree (BST) 🌳. #BinarySearchTree #BST #DataStructures #Algorithms #Java #LeetCode #100DaysOfCode #DSA #letsconnect
Something went wrong.
Something went wrong.
United States Trends
- 1. No Kings 734K posts
- 2. Vandy 5,309 posts
- 3. #AnteX N/A
- 4. Dork Cult Protest Day 31.1K posts
- 5. Brian Kelly N/A
- 6. Duke 70.9K posts
- 7. Semaj Morgan N/A
- 8. Arsenal 107K posts
- 9. Shula 1,122 posts
- 10. Vanderbilt 4,639 posts
- 11. #GoBlue 1,638 posts
- 12. #Sooners N/A
- 13. Fulham 33.8K posts
- 14. Nuss 2,405 posts
- 15. Saka 31.6K posts
- 16. Araujo 579K posts
- 17. Pavia 1,681 posts
- 18. Harold Perkins N/A
- 19. McLaren 50.3K posts
- 20. Andrew Marsh N/A