You are on page 1of 1

SSN COLLEGE OF ENGINEERING, KALAVAKKAM – 603 110

DEPARTMENT OF INFORMATION TECHNOLOGY

13. Write a C++ program to implement Binary search tree ADT operations and
perform Tree Traversals.
Operations
Buildtree() – Initializes the Binary Search tree(BST)
Insert() – insert a new node into a BST
Search() – finds a node in BST
Delete() – removes a node from the BST
Findmin() – returns the minimum element in the BST
Findmax() - returns the maximum element in the BST
InorderTraverse() – traverse the BST in Inorder
PreorderTraverse() – traverse the BST in Preorder
PostorderTraverse() – traverse the BST in Postorder

Prepared by,
J. K. Josephine Julina

You might also like