Skip to content

N1ghtF1re/C-Collections

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

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