Описание тега singly-linked-list

A linked list in which each node only points to the next node in the list, as opposed to a doubly-linked list in which each node points to both the next and the previous nodes. This tag should be used with additional tags indicating the programming language being used ([c], [c++], [java], etc.) and any libraries or plug-ins being used such as [c++-standard-library]. The post itself should contain source code for the issue.

Singly linked lists are a type of linked-list. Each node in the list has one reference which points to the next node in the list. This allows forward traversal, iteration, of the nodes in the list but not backwards traversal.

See also doubly-linked-list which allows for both forward traversal and backwards traversal of the list.

Resources: