Skip to content

Binary Tree


docs/binary_tree.md

# Binary Tree

A binary search tree (BST) implementation in Python.

Features

  • Insert
  • Delete
  • Search
  • In-order Traversal
  • Pre-order Traversal
  • Post-order Traversal
  • Level-order Traversal

Class Overview

class BinaryTree:
    def __init__(self):
        self.root = None
    ...