list processing is one of the computer's biggest strengths; singly linked lists provide the basis for a number of interesting algorithms and techniques that are useful in every aspect of programming.
列表(list)处理是计算机最强功能之一;单链表(singly linked lists)为可以应用于编程各个方面的许多有趣的算法和技术提供了基础。
instead of implementing singly linked lists as we did earlier, i recommend implementing such lists with a class linkedlist that contains a field holding either an empty or a cons class.
我建议执行有着linkedlist类的链表,该类包含一个有empty类或cons类的域,而不是象我们前面做的那样,单个执行链接链表。
singly linked lists are a powerful abstraction that allow you to represent numerous types of data.
单链表是让您可以描述多种类型数据的一种有效抽象。
firstly, singly linked lists are used as the data structure of this algorithm rather than doubly linked lists or trees as other algorithms use, so less memory space and running time are required.
首先,该算法使用单线性链表数据结构,与其他使用双链表或树结构的算法相比,具有占用空间少及处理速度快的特点;