-
Binary search is an algorithm for finding an item from a sorted list of items. In this case, Randoom QuickSort was choosen as sort method.
-
Usage: java BinarySearch fileWithItems fileWithItemsToSearch
-
Binary Search Tree is a node-based binary tree data structure. Each node store the lessers values than key on left. The greater values than key is stored on the right.
-
Usage: java BSTree fileWithItems fileWithItemsToSearch
(Warning: Not recommended for sequencials values).