BST


Sort Arraylist vs. Binary Search Tree
NASDAQ Stock Sorter

BST will update the shuffled_stocks.csv data set with randomized price updates from price_updates.txt
The program will first run an Arraylist sort and will then run a Binary Search Tree sort.
Upon completion, it will compare the run times for both programs.
I created this project for my Computer Science 2 course when studying data structures.
This project demonstrates my knowledge of Binary Search Trees.

StockDriver Code (Executes most of application)


TickerComp Code (Comparator for Tickers)


Stock Code (Stock object, all relevant data will be stored here)