A personal project I'm developping, to test different types of data structure and algorithms and derive metrics to compare their efficiency! I am implementing a data structures library from scratch, to have more control over internal operations than I would with the basic java structures.
- Vector (equivalent to java's ArrayList)
- Binary search tree
- Bubble sort
- Mergesort
- Inserting, removing elements.
- Searching
- Inserting, removing nodes
Hash tables, linked lists, and a library for comparing algorithms.