There are a few ways to delete nodes in a linked list in C++. The easiest way is to use the delete operator. The following code deletes the first node in the list, and then deletes the second node: List l = new List(); l.insert(0, new Node(“Hello, world!”)); l.insert(1, new Node(“world!”)); cout « “Deleted " « l.size() « " nodes” « endl;