April 4, 2021

What is cpp list?

Inserting and removing nodes is a simple process that can be done by adding or deleting the desired node and manipulating the pointers of the node before and after it. This is why cpp list are much efficient data containers than deques or vectors in STL.

Inserting and removing nodes is a simple process that can be done by adding or deleting the desired node and manipulating the pointers of the node before and after it. This is why C++ lists are much efficient data containers than deques or vectors in STL.

Visit: https://pradtutorials.com/cpp-list/