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
- Host: GitHub
- URL: https://github.com/hauntedhost/data-structures-ruby
- Owner: hauntedhost
- Created: 2014-02-09T02:50:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-10-22T23:18:34.000Z (over 10 years ago)
- Last Synced: 2023-05-15T04:04:25.773Z (about 3 years ago)
- Language: Ruby
- Size: 171 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Data Structures
===============
Demo
----
[](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)