Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/make-github-pseudonymous-again/js-splay-tree
:zipper_mouth_face: Splay trees for JavaScript
https://github.com/make-github-pseudonymous-again/js-splay-tree
agpl amortized binary-search-trees binary-trees computer-science data-structures dynamic-optimality javascript search search-trees splay-tree trees
Last synced: about 1 month ago
JSON representation
:zipper_mouth_face: Splay trees for JavaScript
- Host: GitHub
- URL: https://github.com/make-github-pseudonymous-again/js-splay-tree
- Owner: make-github-pseudonymous-again
- License: agpl-3.0
- Created: 2020-10-24T18:18:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T11:30:03.000Z (over 3 years ago)
- Last Synced: 2024-04-13T09:58:43.177Z (7 months ago)
- Topics: agpl, amortized, binary-search-trees, binary-trees, computer-science, data-structures, dynamic-optimality, javascript, search, search-trees, splay-tree, trees
- Language: JavaScript
- Homepage: https://aureooms.github.io/js-splay-tree
- Size: 4.15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
:zipper_mouth_face: [@aureooms/js-splay-tree](https://aureooms.github.io/js-splay-tree)
==Splay trees for JavaScript.
See [docs](https://aureooms.github.io/js-splay-tree).
Parent is [@aureooms/js-bst](https://github.com/aureooms/js-bst).> :building_construction: Caveat emptor! This is work in progress. Code may be
> working. Documentation may be present. Coherence may be. Maybe.```js
let tree = SplayTree.from( increasing , range( 100000 ) ) ;
```[![License](https://img.shields.io/github/license/aureooms/js-splay-tree.svg)](https://raw.githubusercontent.com/aureooms/js-splay-tree/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@aureooms/js-splay-tree.svg)](https://www.npmjs.org/package/@aureooms/js-splay-tree)
[![Build](https://img.shields.io/travis/aureooms/js-splay-tree/main.svg)](https://travis-ci.org/aureooms/js-splay-tree/branches)
[![Dependencies](https://img.shields.io/david/aureooms/js-splay-tree.svg)](https://david-dm.org/aureooms/js-splay-tree)
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-splay-tree.svg)](https://david-dm.org/aureooms/js-splay-tree?type=dev)
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-splay-tree.svg)](https://github.com/aureooms/js-splay-tree/issues)
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-splay-tree.svg)](https://www.npmjs.org/package/@aureooms/js-splay-tree)[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-splay-tree.svg)](https://codeclimate.com/github/aureooms/js-splay-tree/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-splay-tree.svg)](https://codeclimate.com/github/aureooms/js-splay-tree/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-splay-tree/main.svg)](https://codecov.io/gh/aureooms/js-splay-tree)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-splay-tree.svg)](https://codeclimate.com/github/aureooms/js-splay-tree/trends/technical_debt)
[![Documentation](https://aureooms.github.io/js-splay-tree/badge.svg)](https://aureooms.github.io/js-splay-tree/source.html)
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-splay-tree)](https://bundlephobia.com/result?p=@aureooms/js-splay-tree)