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

https://github.com/n1ghtf1re/c-collections

Implementation of some collections on C
https://github.com/n1ghtf1re/c-collections

c c-data-structures c-library c-struct collections dynamic-structures

Last synced: 7 months ago
JSON representation

Implementation of some collections on C

Awesome Lists containing this project

README

          

C-Collections



Stars
Total Downloads
Latest Stable Version
License


## About
A library is a collection of collections for the C language.

## Realized collections
Currently the library contains:
+ Linked List
+ Queue
+ Stack
+ HashMap
+ Binary Search Tree

## Nodes type
The main type is specified in the node.h file.

By default, the informative part of the node is described by the following structure:

```C
typedef union NodeInfo {
int intValue;
char *stringValue;
double realValue;
void *pointerValue;
} NodeInfo;
```