CSC508: Data Structure Assignment, UiTM, Malaysia Define your own Binary Search Tree (BST) data structure using Linked List
QUESTION 1. Define your own Binary Search Tree (BST) data structure using Linked List You can name your BST as MyBST. 2. Define methods in the BST to perform the following operations : a. Determine whether the BST is empty b. Insert an item in the BST. c. Traverse the BST (preorder, inorder, postorder) d. …