Computer Science, asked by elsajogy8193, 10 months ago

Q2. Deleting a node in a linked list is a simple matter of using the delete operator to free the node's memory

Answers

Answered by RishiAEC
0

Answer:

Deleting a node in a linked list is a simple matter of using the delete operator to free the node's memory. False, it is not only using the delete operator, but updating the concerned node's link part. A class that builds a linked list should destroy the list in the class destructor.

Similar questions