diff -r 51a74ef9ed63 -r ae94777fff8f Symbian3/SDK/Source/GUID-F765C7EB-A8C6-50C0-B350-85BE04C8984F.dita --- a/Symbian3/SDK/Source/GUID-F765C7EB-A8C6-50C0-B350-85BE04C8984F.dita Wed Mar 31 11:11:55 2010 +0100 +++ b/Symbian3/SDK/Source/GUID-F765C7EB-A8C6-50C0-B350-85BE04C8984F.dita Fri Jun 11 12:39:03 2010 +0100 @@ -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