[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]

Although the Insert() function allows new nodes to be inserted at the head
and the tail of a list, the AddHead() and AddTail() functions will do so
with higher efficiency.  Adding to the head or tail of a list is common
practice in first-in-first-out (FIFO) or last-in-first-out (LIFO or stack)
operations.  For example, AddHead(header,node) would insert the node at
the head of the specified list.