Some simple rspec tests for data structures in Ruby.
Based mostly on https://www.coursera.org/learn/data-structures/ with additional input from other sites and wwcode.
Currently Completed
- Linked Lists + Doubly linked lists
- Stacks
- Queues
- Binary Tree
Todo:
- Hashmaps
- ...
To use:
bundle install- checkout our own branch and try to make the specs turn green
- To run specs for a specific data structure e.g. linked_lists:
rspec spec/linked_lists