#binaryTree
Need a random map for your Rust game project? Np.

🦀 knossos: A Rust library / CLI for generating mazes.

🚀 Supports multiple algorithms & saving to a file!

⭐ GitHub: github.com/unrenamed/kn...

#rustlang #maze #library #opensource #gamedev #generation #binarytree #labrinth
April 10, 2025 at 10:09 AM
🌳 Recursive tree traversal in Python visually explained:
memory-graph.com#codeurl=http...

A binary tree can be traversed in three classic ways:
🔹 𝗣𝗿𝗲𝗼𝗿𝗱𝗲𝗿: current, left, right
🔹 𝗜𝗻𝗼𝗿𝗱𝗲𝗿: left, current, right
🔹 𝗣𝗼𝘀𝘁𝗼𝗿𝗱𝗲𝗿: left, right, current

#Python #memory_graph #Recursion #BinaryTree
September 27, 2026 at 11:47 AM
Data Structures in Python get easy when you can see the structure of your data using 𝗺𝗲𝗺𝗼𝗿𝘆_𝗴𝗿𝗮𝗽𝗵. A Binary Tree example: memory-graph.com#codeurl=http...

VS Code setup: dai.ly/xb2u52e?star...

memory_graph GitHub: github.com/bterwijn/mem...

#PythonDev #memory_graph #DataStructures #BinaryTree
September 16, 2026 at 11:36 PM
One traversal. O(n) time.

A simple example of letting recursion do the bookkeeping for you.

#DSA #BinaryTree #Algorithms #Coding
September 11, 2026 at 2:53 PM
Learn how integer-based bijections enable efficient Gödel-numbering and tree-based LZ coding. #binarytree
CFG Tree Enumeration: A Simple Integer-Based Bijection Algorithm
hackernoon.com
March 14, 2026 at 7:00 PM
Some tech YouTubers are talking about the post on X about 90% of CS grad candidates couldn’t solve #LevelOrderTraversal in #BinaryTree 🌲

Maybe I should deal with the #BFS concept for my next episode on problem solving 🤔

#leetcode #codinginterview #programming

leetcode.com/problems/bin...
Binary Tree Level Order Traversal - LeetCode
Can you solve this real interview question? Binary Tree Level Order Traversal - Given the root of a binary tree, return the level order traversal of its nodes' values. (i.e., from left to right, level...
leetcode.com
February 19, 2025 at 1:33 PM
Yay! 🙌 For the sake of CS grads who are preparing for phone screens

I published Binary Tree Level Order Traversal content with the concept explanation of BFS 🌲🌴

#codesky #devsky #leetcode #algorithm #breadthfirstsearch #tree #binarytree #bfs #csinterview #programming

youtu.be/d9g50In_jBQ?...
March 16, 2025 at 3:33 PM
Datatype99: Algebraic data types for #C
January 8, 2025 at 6:37 PM
#chatGPT from OpenAI search is not returning correct answer. Try this and let me know. "Given the root of a tree, return the length of the diameter of the tree in Java." The code it returns for binary tree. I did not mention binary tree. I am asking for a tree.
#binarytree #softwareengineer #llm
April 4, 2025 at 10:21 PM

________111 11 1 11
___11 1001001 0000 01 1
___100101 0011 0_01_01_1
011 100110010100 101 0 00
1_0_11_0 11 10001__1_0_1 00
00 00 0 01 01 10 0 1 110 10
_110_---11\0|00-0--1--11
_______00___\|||
:_____________|||
:_____________|||
:_____________|||
_______, -=-~ .-^- _
#binaryTree #ascii #asciArt
September 18, 2024 at 7:53 PM
Finding the minimum depth of a binary tree? 🌳 It's trickier than it seems! Avoid common pitfalls and learn the best approaches here. #LeetCode #BinaryTree #Coding https://fanyangmeng.blog/111-minimum-depth-of-binary-tree/
111. Minimum Depth of Binary Tree
Master LeetCode 111 the binary tree minimum depth problem with Python! Learn four different approaches—recursive postorder, direct recursion, preorder, and level-order traversal—to find the shortest path from root to leaf node. Avoid common pitfalls with nodes having only one child.
fanyangmeng.blog
April 23, 2025 at 3:43 AM
🧠💡 Learn how to determine if a binary tree is symmetric using both recursive and iterative approaches! Check out the full guide here: https://fanyangmeng.blog/symmetric-tree/ #LeetCode #BinaryTree #Python
101. Symmetric Tree
Learn how to solve LeetCode's 101.Symmetric Tree problem with Python implementations. Explore both recursive and iterative approaches to check if a binary tree is symmetric around its center. Includes detailed explanations and example code.
fanyangmeng.blog
February 23, 2025 at 3:35 AM
Inverting a binary tree is a classic problem that teaches valuable lessons about tree traversal and recursion. Learn different approaches to solve it effectively! 🌳🔄 #BinaryTree #Algorithms https://fanyangmeng.blog/invert-binary-tree/
226. Invert Binary Tree
Master inverting a binary tree (LeetCode 226) with Python! Discover recursive & iterative methods (BFS/DFS), pre/post-order traversal strategies, and node-swapping logic. Perfect for coding interviews and algorithm mastery. Step-by-step solutions explained.
fanyangmeng.blog
February 21, 2025 at 4:43 AM
Master level order traversal in binary trees to solve 10 essential problems with one smart FIFO queue approach! 🚀 Unlock level-by-level coding clarity. https://fanyangmeng.blog/binary-tree-level-order-traversal/ #BinaryTree #Coding
102. Binary Tree Level Order Traversal
Master binary tree level order traversal to solve 10 LeetCode problems at once! Learn both queue-based iterative and recursive approaches with Python implementations. Understand how BFS differs from DFS traversals and why queues are perfect for processing nodes level-by-level.
fanyangmeng.blog
February 20, 2025 at 4:53 AM