Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 685 Bytes

File metadata and controls

25 lines (20 loc) · 685 Bytes

BinarySearchTrees

A WinForms app to visualize how different kinds of binary search trees work. Available tree types:

Regular binary search tree

image

Red-black tree

image

AVL tree

image

Available tree operations:

  • Insertion
  • Deletion
  • Searching
  • Minimum
  • Maximum
  • Predecessor
  • Successor
  • Preorder tree walk
  • Inorder tree walk
  • Postorder tree walk