Skip to content

C++ intrusive container templates. Abstract node links, no use of new/delete.

Notifications You must be signed in to change notification settings

wkaras/C-plus-plus-intrusive-container-templates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9f2c93f · Mar 29, 2025

History

5 Commits
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
Mar 29, 2025
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018
Jun 15, 2019
May 6, 2018
May 6, 2018
May 6, 2018
May 6, 2018

Repository files navigation

C-plus-plus-intrusive-container-templates

C++ intrusive container templates. Abstract node links, no use of new/delete (AVL tree, singly-linked list, bidirection list, hash table available currently).

Also look at boost::instrusive, which is STL-compatible. Links under the Boost approach are unabstracted pointers. There is no function to build a balanced binary tree from a sequence, but you could port mine into the Boost lib pretty easily.

There are no throw statements in this code. But if you use abstractor classes that throw exceptions, you must assume the data structure is in an undefined state after an exception is thrown. boost::instrusive, as well as the STL, will restore the data structure to the pre-call state in the event of an exception throw.

About

C++ intrusive container templates. Abstract node links, no use of new/delete.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published