#Data Structures This repo is full of my implementations of various data structrues. Although this is a ruby repo, I'm trying not to implement these structs in a Ruby-way necessarily but a more canonical implementation.
##Array Uses an internal array and provides the following methods
- <<
- []
- []=
- push
- pop
- find
- delete
- max
- min
A subclass of Array but it remains sorted with all operations
##Todo
- Radix Sort