Skip to content

ellkrauze/stack_binary_search_tree

Repository files navigation

Stack and Binary Search Tree

Realization of stack and Binary Search Tree in Python

Stack

Inlcudes simplest functions such as push n, pop, clear, back, size and exit.

Binary Search Tree

Includes functions such as fill, insert, delete, find, print in order, print pre order, print post order. Also includes interaction console realization.