Skip to content

padawin/map-structure-implementation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Map (associative array) implementation

C Implementation of a map structure (associative array)

The current features are:

  • search an item from a key
  • insert an item
  • update an item
  • delete an item

A test file is provided as example.

## Usage

Compile it:

make

Once it is compiled, you can run an example binary:

./map-examples

Or install the library to use it in your own projects:

make install

By default, the libmap.so will be installed in /usr/lib and the map.h in /usr/include. Those values can be changed in the Makefile before compiling it (variables $LIBDIR and $INCLDIR).

About

C implementation of maps (associative arrays).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages