Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 407 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 407 Bytes

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.