An open API service indexing awesome lists of open source software.

https://github.com/robinc94/datastructure


https://github.com/robinc94/datastructure

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# DataStructure

My deployment of all common used data structures written with C++ and [google test](https://github.com/google/googletest), no STL!!!

****

| Data Structure | Deploy | Test | Define |
|:----------:|:------:|:------:|:-----:|
| Sequence List | :ballot_box_with_check: | :ballot_box_with_check: | [seqList.h](./include/seqList.h) |
| Sequence Stack | :ballot_box_with_check: | :ballot_box_with_check: | [seqStack.h](./include/seqStack.h) |
| Sequence Queue | :ballot_box_with_check: | :ballot_box_with_check: | [seqQueue.h](./include/seqQueue.h) |
| Linked List | :ballot_box_with_check: | :ballot_box_with_check: | [linkList.h](./include/linkList.h) |
| Double Linked List | :ballot_box_with_check: | :ballot_box_with_check: | [doubleLinkList.h](./include/doubleLinkList.h) |
| Linked Stack | :ballot_box_with_check: | :ballot_box_with_check: | [linkStack.h](./include/linkStack.h) |
| Linked Queue | :ballot_box_with_check: | :ballot_box_with_check: | [linkQueue.h](./include/linkQueue.h) |
| Open Hash List | :ballot_box_with_check: | :ballot_box_with_check: | [openHashTable.h](./include/openHashTable.h) |
| Closed Hash List| :ballot_box_with_check: | :ballot_box_with_check: | [closeHashTable.h](./include/closeHashTable.h) |
| Binary Tree | :ballot_box_with_check: | :ballot_box_with_check: | [binaryTree.h](./include/binaryTree.h) |
| Binary Searching Tree | :ballot_box_with_check: | :ballot_box_with_check: | [binarySearchTree.h](./include/binarySearchTree.h) |
| Huffman Tree | :ballot_box_with_check: | :ballot_box_with_check: | [hfTree.h](./include/hfTree.h) |
| Graph Adjacency List | | | |
| Graph Adjacency Matrix | | | |
| Sort | :ballot_box_with_check: | :ballot_box_with_check: | [mySort.h](./include/mySort.h) |
|