Creating a Binary Search Tree (BST)

access_time 2025-01-12T16:33:27.665Z face Nerchuko
Creating a Binary Search Tree (BST) A comprehensive guide to understanding and implementing Binary Search Trees in Python January 12, 2025 Introduction to Binary Search Trees A Binary Search Tree (BST) is a special type of binary tree where each node follows specific ordering properties. The left su...

Searching an Element in a Binary Tree

access_time 2025-01-12T16:30:06.93Z face Nerchuko
Searching an Element in a Binary Tree Searching for an element in a binary tree is one of the most common operations. Unlike binary search trees (BSTs), binary trees do not have any ordering constraints, so searching for an element requires checking each node. In this blog, we will explore two metho...

Level Order Traversal in Binary Tree

access_time 2025-01-12T16:28:11.983Z face Nerchuko
Level Order Traversal in Binary Trees Tree traversal is the process of visiting every node in a tree exactly once in a systematic way. There are several types of tree traversals: Preorder Traversal Inorder Traversal Postorder Traversal Level Order Traversal In this blog, we'll focus on level order t...

Postorder Traversal in Binary Trees

access_time 2025-01-12T16:26:30.153Z face Nerchuko
Postorder Traversal in Binary Trees Tree traversal is the process of visiting every node in a tree exactly once in a systematic way. There are several types of tree traversals: Preorder Traversal Inorder Traversal Postorder Traversal Level Order Traversal In this blog, we'll focus on postorder trave...

Inorder Traversal in Binary Trees

access_time 2025-01-12T16:20:23.007Z face Nerchuko
Inorder Traversal in Binary Trees Tree traversal is the process of visiting every node in a tree exactly once in a systematic way. There are several types of tree traversals: Preorder Traversal Inorder Traversal Postorder Traversal Level Order Traversal In this blog, we'll focus on inorder traversal...

🚀 Just Released

Learn how to prepare for data science interviews with real questions, no shortcuts or fake promises.

See What’s Inside