其他分享
首页 > 其他分享> > Day 1 Linked List

Day 1 Linked List

作者:互联网

Linked List is composed of a series of nodes.

The list is terminated when a node's link is null. The last node in this linked list is called the 'tailed node'. Respectively, the first node is called the 'head node'.

Since the nodes use links to denote the next node in the sequence, the nodes are not required to be sequentially located in the momery. These links also allow for quick insertion and removal of nodes. 

Common operations on a linked list may include:

 

Linked list needs some maintanance in order to add or remove nodes. 

 

标签:node,links,linked,List,list,Linked,nodes,Day
来源: https://www.cnblogs.com/M1stF0rest/p/15760780.html