diff -r ebc84c812384 -r 46218c8b8afa Symbian3/PDK/Source/GUID-F765C7EB-A8C6-50C0-B350-85BE04C8984F.dita --- a/Symbian3/PDK/Source/GUID-F765C7EB-A8C6-50C0-B350-85BE04C8984F.dita Thu Mar 11 15:24:26 2010 +0000 +++ b/Symbian3/PDK/Source/GUID-F765C7EB-A8C6-50C0-B350-85BE04C8984F.dita Thu Mar 11 18:02:22 2010 +0000 @@ -1,33 +1,33 @@ - - - - - -Doubly -linked listsThis document is a introduction to doubly linked lists. -

A doubly linked list is one where each element has pointers forwards to -the next element and backwards to the previous element. The list is circular -- the last element points forwards to an anchor point, and the anchor point -points back to the last element.

-

Anchor points are always referred to as headers.

-

A doubly linked list is useful for maintaining a circular queue of items.

- - - -

Doubly linked lists involve the creation and use of the classes:

- -

In practice, these classes are almost always used as components of other -classes.

+ + + + + +Doubly +linked listsThis document is a introduction to doubly linked lists. +

A doubly linked list is one where each element has pointers forwards to +the next element and backwards to the previous element. The list is circular +- the last element points forwards to an anchor point, and the anchor point +points back to the last element.

+

Anchor points are always referred to as headers.

+

A doubly linked list is useful for maintaining a circular queue of items.

+ + + +

Doubly linked lists involve the creation and use of the classes:

+
    +
  • TDblQueLink

  • +
  • TDblQue<class +T>

  • +
  • TDblQueIter<class +T

  • +
+

In practice, these classes are almost always used as components of other +classes.

\ No newline at end of file