Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JuliaCollections/DataStructures.jl
Julia implementation of Data structures
https://github.com/JuliaCollections/DataStructures.jl
data-structures julia
Last synced: 14 days ago
JSON representation
Julia implementation of Data structures
- Host: GitHub
- URL: https://github.com/JuliaCollections/DataStructures.jl
- Owner: JuliaCollections
- License: mit
- Created: 2013-03-13T16:28:14.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T06:18:59.000Z (7 months ago)
- Last Synced: 2024-05-18T13:41:27.744Z (6 months ago)
- Topics: data-structures, julia
- Language: Julia
- Homepage: https://juliacollections.github.io/DataStructures.jl/latest/
- Size: 2.58 MB
- Stars: 679
- Watchers: 30
- Forks: 242
- Open Issues: 173
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: License.md
Awesome Lists containing this project
README
[![Travis Build Status](https://travis-ci.org/JuliaCollections/DataStructures.jl.svg?branch=master)](https://travis-ci.org/JuliaCollections/DataStructures.jl)
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/5gw9xok4e58aixsv?svg=true)](https://ci.appveyor.com/project/kmsquire/datastructures-jl)
[![Test Coverage](https://coveralls.io/repos/github/JuliaCollections/DataStructures.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaCollections/DataStructures.jl?branch=master)
[![Test Coverage](https://codecov.io/github/JuliaCollections/DataStructures.jl/coverage.svg?branch=master)](https://codecov.io/github/JuliaCollections/DataStructures.jl?branch=master)
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliacollections.github.io/DataStructures.jl/stable)
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliacollections.github.io/DataStructures.jl/dev)
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)DataStructures.jl
=================This package implements a variety of data structures, including
- Deque (implemented with an [unrolled linked list](https://en.wikipedia.org/wiki/Unrolled_linked_list))
- CircularBuffer
- CircularDeque (based on a circular buffer)
- Stack
- Queue
- Priority Queue
- Fenwick Tree
- Accumulators and Counters (i.e. Multisets / Bags)
- Disjoint-Sets
- Binary Heap
- Mutable Binary Heap
- Ordered Dicts and Sets
- RobinDict (implemented with [Robin Hood Hashing](https://cs.uwaterloo.ca/research/tr/1986/CS-86-14.pdf))
- SwissDict (inspired from [SwissTables](https://abseil.io/blog/20180927-swisstables))
- Dictionaries with Defaults
- Trie
- Linked List and Mutable Linked List
- Sorted Dict, Sorted Multi-Dict and Sorted Set
- DataStructures.IntSet
- SparseIntSet
- DiBitVector (in which each element can store two bits)
- Red Black Tree
- AVL Tree
- Splay TreeResources
---------- **Documentation**: https://juliacollections.github.io/DataStructures.jl/stable/