All Projects → mauriciosantos → Buckets Js

mauriciosantos / Buckets Js

Licence: mit
A complete, fully tested and documented data structure library written in pure JavaScript.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Buckets Js

Containers
This library provides various containers. Each container has utility functions to manipulate the data it holds. This is an abstraction as to not have to manually manage and reallocate memory.
Stars: ✭ 125 (-88.92%)
Mutual labels:  data-structures, tree, stack, collections, tree-structure, set, priority-queue, collection, queue, map
Javascript Datastructures Algorithms
📚 collection of JavaScript and TypeScript data structures and algorithms for education purposes. Source code bundle of JavaScript algorithms and data structures book
Stars: ✭ 3,221 (+185.55%)
Mutual labels:  data-structures, tree, stack, dictionary, set, linked-list, priority-queue, queue
Mlib
Library of generic and type safe containers in pure C language (C99 or C11) for a wide collection of container (comparable to the C++ STL).
Stars: ✭ 321 (-71.54%)
Mutual labels:  tree, stack, dictionary, collections, set, priority-queue, queue
Data Structures With Go
Data Structures with Go Language
Stars: ✭ 121 (-89.27%)
Mutual labels:  tree, stack, dictionary, collections, linked-list, queue
Redux Data Structures
Reducer factory functions for common data structures: counters, maps, lists (queues, stacks), sets, etc.
Stars: ✭ 157 (-86.08%)
Mutual labels:  data-structures, stack, dictionary, set, queue, map
Learningmasteringalgorithms C
Mastering Algorithms with C 《算法精解:C语言描述》源码及Xcode工程、Linux工程
Stars: ✭ 615 (-45.48%)
Mutual labels:  tree, stack, set, linked-list, queue
Algodeck
An Open-Source Collection of 200+ Algorithmic Flash Cards to Help you Preparing your Algorithm & Data Structure Interview 💯
Stars: ✭ 4,441 (+293.71%)
Mutual labels:  data-structures, tree, stack, linked-list, queue
Data Structures
This repository contains some data structures implementation in C programming language. I wrote the tutorial posts about these data structures on my personal blog site in Bengali language. If you know Bengali then visit my site
Stars: ✭ 82 (-92.73%)
Mutual labels:  data-structures, tree, stack, linked-list, queue
Data Structures
Common data structures and algorithms implemented in JavaScript
Stars: ✭ 139 (-87.68%)
Mutual labels:  data-structures, tree, stack, linked-list, queue
Data-structures
Data Structures in Java
Stars: ✭ 13 (-98.85%)
Mutual labels:  linked-list, stack, queue, data-structures, tree-structure
Libgenerics
libgenerics is a minimalistic and generic library for C basic data structures.
Stars: ✭ 42 (-96.28%)
Mutual labels:  data-structures, stack, priority-queue, queue, map
Sc
Common libraries and data structures for C.
Stars: ✭ 161 (-85.73%)
Mutual labels:  data-structures, stack, collections, linked-list, queue
Geeksforgeeks Dsa 2
This repository contains all the assignments and practice questions solved during the Data Structures and Algorithms course in C++ taught by the Geeks For Geeks team.
Stars: ✭ 53 (-95.3%)
Mutual labels:  data-structures, tree, stack, linked-list, queue
Interview Questions
List of all the Interview questions practiced from online resources and books
Stars: ✭ 187 (-83.42%)
Mutual labels:  data-structures, tree, stack, linked-list, queue
ctl
My variant of the C Template Library
Stars: ✭ 105 (-90.69%)
Mutual labels:  set, tree, stack, queue, priority-queue
AlgoDaily
just for fun
Stars: ✭ 118 (-89.54%)
Mutual labels:  tree, linked-list, stack, queue
NonEmptyCollections
A type-safe implementation for collections that cannot be empty. Life is too short for emptiness-checks!
Stars: ✭ 45 (-96.01%)
Mutual labels:  map, set, collection, collections
InterviewBit
Collection of solution for problems on InterviewBit
Stars: ✭ 77 (-93.17%)
Mutual labels:  tree, linked-list, stack, queue
Data Structures
Go datastructures.
Stars: ✭ 336 (-70.21%)
Mutual labels:  data-structures, tree, linked-list, priority-queue
Algorithm
Algorithm is a library of tools that is used to create intelligent applications.
Stars: ✭ 787 (-30.23%)
Mutual labels:  data-structures, stack, dictionary, set

Buckets

Build Status NPM Version

A JavaScript Data Structure Library

Buckets is a complete, fully tested and documented data structure library written in pure JavaScript.

Included data structures

Buckets also includes several functions for manipulating arrays.

Supported platforms

  • Every desktop and mobile browser (including IE6)
  • Node.js

If it supports JavaScript, it probably supports buckets.

Downloading Buckets

Download directly

Then, add it as a script tag to your page:

<script src="buckets.js"></script>
<script>
  var aSet = new buckets.Set();
</script>

Or install bucketsjs using bower

bower install bucketsjs

Or use an AMD loader

require(["./bower/bucketsjs/buckets.js"], function(buckets) {
  var hm = new buckets.Dictionary();
});

Or install buckets-js using npm

npm install buckets-js

In Node.js: var buckets = require('buckets-js');.

Usage

var a = new buckets.Set();
var b = new buckets.Set();
a.add(1);
a.add(2);
b.add(2);
a.union(b); // {1,2}

Read the documentation.

Building Buckets

There's nothing else you need to use buckets. However, this guide may help you if you wish to contribute to the project or modify it.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].