This is the mail archive of the libc-help@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Linked List Implementation


On 11/27/2017 02:26 AM, Charlie Sale wrote:

I was wondering why glibc does not have any sort of linked list or related
data structures implemented?

In fact, there is an implementation of doubly-linked lists, see insque and remque. Balanced binary search trees are provided with tsearch and related functions. For hash tables, see hsearch_r.

These interfaces are old and somewhat difficult to use, but I expect it will be difficult to get consensus for a new set of interfaces because everyone looks for something different in a container library.

Thanks,
Florian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]