An open API service indexing awesome lists of open source software.

https://github.com/hauntedhost/data-structures-ruby

Adventures in implementing data structures in Ruby
https://github.com/hauntedhost/data-structures-ruby

Last synced: 11 months ago
JSON representation

Adventures in implementing data structures in Ruby

Awesome Lists containing this project

README

          

Data Structures
===============

Demo
----
[![Screenshot](/doc/screenshot.png)](https://github.com/somlor/data-structures-ruby)

Summary
-------
Adventures in implementing data structures in pure Ruby.

So far implemented:
* [**Binary tree**](http://en.wikipedia.org/wiki/Binary_tree) with #dfs and #bfs, for depth-first and breadth-first searches.
* [**Queue**](http://en.wikipedia.org/wiki/Queue_(abstract_data_type)) with #enq and #deq.

---
Developed by [Sean Omlor](http://seanomlor.com)