Sha256: 10bba0e8fb7c94ccc9714e26cb463b872755631572b0b88c31f1140bfd25eda7
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
# DataStructures101 [![Build Status](https://travis-ci.org/renehernandez/bok-data_structures_101.svg?branch=master)](https://travis-ci.org/renehernandez/bok-data_structures_101) DataStructures101 is a simple gem that groups several implementations of common data structures usually taught in Computer Science courses. The overall goal of the gem is to provide easy to use functionality (trying to match the behavior of existent structures in Ruby) while providing the user with a framework to test and compare their implementations against. ## Installation Add this line to your application's Gemfile: ```ruby gem 'data_structures_101' ``` And then execute: $ bundle Or install it yourself as: $ gem install data_structures_101 ## Usage ```ruby require 'data_structures_101' ``` ### LinkedList To create a LinkedList ```ruby list = DataStructures101::LinkedList.new ``` For more information in the `LinkedList` class, check [this post](https://bitsofknowledge.net/data-structures-101-linked-list) and read the documentation. ## Contributing In lieu of a formal styleguide, take care to maintain the existing coding style. Add specs for any new or changed functionality and tests it using RSpec. Bug reports and pull requests are welcome on GitHub at https://github.com/renehernandez/data_structures_101. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
data_structures_101-0.2.2 | README.md |
data_structures_101-0.2.1 | README.md |
data_structures_101-0.1.0 | README.md |