/Linked_List

A linked list is a dynamic data structure where each element (called a node) is made up of two items: the data and a reference (or pointer), which points to the next node.

Primary LanguageC++

Stargazers