https://github.com/arnellebalane/ds.rb
data structures implemented using ruby
https://github.com/arnellebalane/ds.rb
Last synced: 3 months ago
JSON representation
data structures implemented using ruby
- Host: GitHub
- URL: https://github.com/arnellebalane/ds.rb
- Owner: arnellebalane
- License: mit
- Created: 2014-04-27T07:45:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-22T01:21:08.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T07:46:14.510Z (about 1 year ago)
- Language: Ruby
- Size: 191 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
###Data Structures implemented using Ruby
####Available Data Structures
- Stack
- __push(__ _$elements_ __)__
- __pop(__ _$count_ __)__
- __top(__ _$count_ __)__
- __elements()__
- __size()__
- Queue
- __enqueue(__ _$elements_ __)__
- __dequeue(__ _$count_ __)__
- __first(__ _$count_ __)__
- __last(__ _$count_ __)__
- __elements()__
- __size()__
- List
- __insertFirst(__ _$elements_ __)__
- __inserLast(__ _$elements_ __)__
- __insertAt(__ _$index, $element_ __)__
- __removeFirst(__ _$count_ __)__
- __removeLast(__ _$count_ __)__
- __removeAt(__ _$index_ __)__
- __getFirst(__ _$count_ __)__
- __getLast(__ _$count_ __)__
- __getAt(__ _$index_ __)__
- __elements()__
- __size()__