Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ducasse/containers-skiplist
https://github.com/ducasse/containers-skiplist
pharo
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ducasse/containers-skiplist
- Owner: Ducasse
- Created: 2018-05-01T19:43:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-01T13:47:35.000Z (over 5 years ago)
- Last Synced: 2024-11-17T06:40:29.508Z (about 1 month ago)
- Topics: pharo
- Language: Smalltalk
- Size: 23.4 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Containers-SkipList
An implementation of Pugh datastructure proposal described in Skip lists: a probabilistic alternative to balanced trees - Communications of the ACM.
[![Build Status](https://travis-ci.com/Ducasse/Containers-SkipList.svg?branch=master)](https://travis-ci.com/Ducasse/Containers-SkipList)
[![Coverage Status](https://coveralls.io/repos/github//Ducasse/Containers-SkipList/badge.svg?branch=master)](https://coveralls.io/github//Ducasse/Containers-SkipList?branch=master)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)]()
[![Pharo version](https://img.shields.io/badge/Pharo-7.0-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-8.0-%23aac9ff.svg)](https://pharo.org/download)## Loading
```
Metacello new
baseline: 'ContainersSkipList';
repository: 'github://Ducasse/Containers-SkipList';
load.
```## If you want to depend on it
```
spec
baseline: 'ContainersSkipList'
with: [ spec repository: 'github://Ducasse/Containers-SkipList/src' ].
```## History
I harvested the code from the old SmalltalkHub/PharoExtras repository. The original developer should contact me for authorship acknowledgment.The best way to predict the future is to do it! Less talking more doing. [email protected]