https://github.com/robinc94/datastructure
https://github.com/robinc94/datastructure
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/robinc94/datastructure
- Owner: RobinC94
- Created: 2019-05-17T12:57:31.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-27T10:19:37.000Z (almost 7 years ago)
- Last Synced: 2025-01-05T21:12:20.571Z (over 1 year ago)
- Language: C++
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) |
|