|
Data Structures & Algorithms in C++
Goodrich, Tamassia, Mount and Goldwasser
|
Code from the chapter "Linked Lists". More...
Data Structures | |
| class | CircularlyLinkedList |
| circularly linked list More... | |
| class | DoublyLinkedList |
| doubly linked list, akin to std::list More... | |
| class | FavoritesList |
| Maintains a list of elements ordered according to access frequency. More... | |
| class | FavoritesListMTF |
| Maintains a list of elements ordered using move-to-front heuristic. More... | |
| class | SinglyLinkedList |
| singly linked list, akin to std::forward_list More... | |
Functions | |
| template<typename List > | |
| void | insertion_sort (List &data) |
Code from the chapter "Linked Lists".
| void dsac::list::insertion_sort | ( | List & | data | ) |