文件名称:doublinklist
介绍说明--下载内容均来自于网络,请自行研究使用
Double linked list- a doubly-linked list is a linked data structure that consists of a set of sequentially-linked records called nodes. Each node contains two fields, called links, that are references to the previous and to the next node in the sequence of nodes. The beginning and ending nodes previous and next links, respectively, point to some kind of terminator, typically a sentinel node or null, to facilitate traversal of the list. If there is only one sentinel node, then the list is circularly-linked via the sentinel node. It can be conceptualized as two singly-linked lists formed from the same data items, but in opposite sequential orders.-Double linked list- a doubly-linked list is a linked data structure that consists of a set of sequentially-linked records called nodes. Each node contains two fields, called links, that are references to the previous and to the next node in the sequence of nodes. The beginning and ending nodes previous and next links, respectively, point to some kind of terminator, typically a sentinel node or null, to facilitate traversal of the list. If there is only one sentinel node, then the list is circularly-linked via the sentinel node. It can be conceptualized as two singly-linked lists formed from the same data items, but in opposite sequential orders.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
doublinklist.c