Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 311 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 311 Bytes

binary-search-tree-in-c

Implementation of binary search tree in c

Functions:

  1. insert
  2. deleteNode
  3. findMin
  4. findMax
  5. preOrder :- pre-order traversal
  6. inOrder :- in-order traversal
  7. postOrder :- post-order traversal
  • All most all the major functions are implemented as recursive functions.