Usually, "linked list" refers to a singly linked list, which consists of many nodes, each of which has only one next pointer to the immediate successor, and the link of the last node in the linked list is None,Indicates the end of the linked list.Accessing data elements can only be done from the head of the linked list to the tail of the linked list, and cannot be accessed in reverse. This is the simplest linked list.
For more detailed analysis of the link, refer to the following link: https://www.jb51.net/article/234355.htm