The standard implementation of a linked list in C

Is there something like a standard list implementation in C? I do not find anything in standard libraries.

Do you have a c library recommendation that implements standard data types like list, map, etc.? I am looking for a subtle single-phase solution.

+6
source share
3 answers

Many unix systems have several different implementations in sys / queue.h

+5
source

The GLib library contains many data structures, including linked lists and, for hash table maps and balanced binary trees . I'm not sure that you will consider it "thin."

+4
source

Source: https://habr.com/ru/post/910738/


All Articles