https://github.com/jabellard/libds
libds - data structure library.
https://github.com/jabellard/libds
algorithm algorithms binary-heap binary-search-tree c data-structures gcc gcc-complier graph hash-table linked-list linux make queue stack vector
Last synced: about 2 months ago
JSON representation
libds - data structure library.
- Host: GitHub
- URL: https://github.com/jabellard/libds
- Owner: jabellard
- Created: 2017-11-12T23:10:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-12T23:22:41.000Z (over 7 years ago)
- Last Synced: 2025-01-17T22:26:21.285Z (3 months ago)
- Topics: algorithm, algorithms, binary-heap, binary-search-tree, c, data-structures, gcc, gcc-complier, graph, hash-table, linked-list, linux, make, queue, stack, vector
- Language: C
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libds - data structure library.
## I. Supported data strutures
### The currently supported data structures are as follows:
#### 1. Doubly-linked List
#### 2. Stack
#### 3. Queue
#### 4. Vector
#### 5. Hash Table
#### 6. Binary Search Tree
#### 6. Binary Heap
#### 7. Graph## II. Instalation Guide
### To install on Linux, run the following commands:
```
make
sudo make install
[OPTIONAL] make clean
```