-
-
Notifications
You must be signed in to change notification settings - Fork 33
dlib.container
Timur Gafarov edited this page Mar 16, 2020
·
4 revisions
This package implements generic GC-free data containers, such as linked list, dynamic array, dictionary, etc. They are based on dlib.core.memory
allocators. dlib.container
is useful when writing applications with manual memory management.
- dlib.container.array - dynamic (expandable) array with random access
- dlib.container.bst - binary search tree
- dlib.container.dict - trie-based dictionary (associative array) that can use any type as a key
- dlib.container.linkedlist - singly linked list
- dlib.container.queue - queue (based on linked list)
- dlib.container.stack - stack (based on linked list)