https://github.com/arafatkatze/dataviz
Build and Visualize data structures in Golang
https://github.com/arafatkatze/dataviz
algorithms data-structures data-visualization golang visualization
Last synced: 22 days ago
JSON representation
Build and Visualize data structures in Golang
- Host: GitHub
- URL: https://github.com/arafatkatze/dataviz
- Owner: arafatkatze
- Created: 2018-04-15T06:29:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-10T23:31:14.000Z (over 4 years ago)
- Last Synced: 2024-05-19T09:11:58.437Z (12 months ago)
- Topics: algorithms, data-structures, data-visualization, golang, visualization
- Language: Go
- Size: 584 KB
- Stars: 413
- Watchers: 14
- Forks: 33
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE/Gods-LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://godoc.org/github.com/Arafatk/DataViz) [](https://travis-ci.org/Arafatk/DataViz) [](https://goreportcard.com/report/github.com/Arafatk/Dataviz) [](https://github.com/Arafatk/DataViz/blob/master/LICENSE/LICENSE.md) [](https://github.com/emersion/stability-badges#stable) [](https://codeclimate.com/github/Arafatk/DataViz/maintainability)
# DataViz
Build and visualize data structures in Golang. Inspired by the ideas from [memviz](https://github.com/bradleyjkemp/memviz) and [Gods](https://github.com/emirpasic/gods) this library
helps user to play around with standard data structures while also giving them the tools to build their own data structures and visualization options....
## Documentation
Documentation is available at [godoc](https://godoc.org/github.com/Arafatk/dataviz).## Requirements
- graphviz
- build graphviz from [source](https://www.graphviz.org/download/)
- linux users
- ```sudo apt-get update```
- ```sudo apt install python-pydot python-pydot-ng graphviz```
- mac users ([Link](http://macappstore.org/graphviz-2/))
- install homebrew
- ```brew install graphviz```## Installation
```go get github.com/Arafatk/Dataviz```## Data Structures
- Containers
- Lists
- ArrayList
- SinglyLinkedList
- DoublyLinkedList
- Stacks
- ArrayStack
- Maps
- TreeMap
- Trees
- RedBlackTree
- AVLTree
- BTree
- BinaryHeap
- Functions
- Comparator
- Iterator
- IteratorWithIndex
- IteratorWithKey
- ReverseIteratorWithIndex
- ReverseIteratorWithKey
- Enumerable
- EnumerableWithIndex
- EnumerableWithKey
- Serialization
- JSONSerializer
- JSONDeserializer
- Sort
- Container
- Visualizer## Usage and Examples
We have a blog post explaining our vision and covering some basic usage of the `dataviz` library. [Check it out here](https://medium.com/@Arafat./introducing-dataviz-a-data-structure-visualization-library-for-golang-f6e60663bc9d).- **Binary Heap**

- **Stack**

- **B Tree**

- **Red Black Tree**
## Contributing
We really encourage developers coming in, finding a bug or requesting a new feature. Want to tell us about the feature you just implemented, just raise a pull request and we'll be happy to go through it. Please read the CONTRIBUTING and CODE_OF_CONDUCT file.