1 / 15

Exploring Doubly-Linked and Circular Linked Lists in Data Structures

This document provides an in-depth overview of doubly-linked lists and circular linked lists, emphasizing the addition of pointers to previous nodes. It covers the advantages of these structures, such as O(1) access to previous nodes, while also discussing the issues related to more complex node pointer management. Additionally, the implementation of circular linked lists and cursor-based linked list structures is illustrated, including template class design and memory management techniques. Detailed examples of insertion, removal, and node traversal are provided for practical understanding.

seoras
Télécharger la présentation

Exploring Doubly-Linked and Circular Linked Lists in Data Structures

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CMSC 341 Lists 3

  2. Doubly-Linked Lists • Option: add pointer to previous node • Issues • doubles number of pointers • allows immediate (O(1)) access to previous node

  3. Circular Linked Lists • Configurations • header in circle • header before circle • no header

  4. Doubly-Linked Circular Linked List • May or may not have a header • Useful for applications requiring fast access to head and tail

  5. Vector Implementation • template <class Object> • void List<Object>:: • insert(const Object &x, const ListItr<Object> &p) • { • if (!p.isPastEnd()) { for (i=this.last; i > p.current+1; i--) • this.nodes[i+1] = this.nodes[i]; this.nodes[p.current+1] = x; • } • }

  6. Cursor Implementation • Linked list look&feel • data stored as collection of nodes: data and next • nodes allocated and deallocated • without dynamic memory allocation • Basic concepts • have node pool of all nodes, keep list of free ones • use pool indices in place of pointers; 0 == NULL

  7. Cursor List Class • template <class Object> • class List { • List(); • // same old list public interface • public: • struct CursorNode { • CursorNode() : next(0) {}; • private: • CursorNode(const Object &theElement, int n) : element(theElement), next(n) {}; • Object element; • int next; • friend class List<Object>; • friend class ListItr<Object>; • };

  8. Cursor List Class (cont.) • … • private: • int header; • static vector<CursorNode> cursorSpace; • static void initializeCursorSpace(); • static int alloc(); • static void free (int p); • friend class ListItr<Object>; • };

  9. Cursor Initialization • template <class Object> • void List<Object>::initializeCursorSpace() { • static int p cursorSpaceIsInitialized = false; • if (!cursorSpaceIsInitialized) { • cursorSpace.resize(100); • for(int i=0; i < cursorSpace.size(); i++) • cursorSpace[i].next = i+1; • cursorSpace[cursorSpace.size()-1].next = 0; • cursorSpaceIsInitialized = true; • } • }

  10. cursorSpace

  11. Cursor Allocation • template <class Object> • void List<Object>::alloc() { • int p = cursorSpace[0].next; • cursorSpace[0].next = cursorSpace[p].next; • return p; • } • template <class Object> • void List<Object>::free(int p) { • cursorSpace[p].next = cursorSpace[0].next; • cursorSpace[0].next = p; • }

  12. Cursor Implementation (cont.) • template <class Object> • ListItr<Object> List<Object>:: • find(const Object &x) const • { • int itr = cursorSpace[header].next; while (itr!=0 && cursorSpace[itr].element != x) • itr = cursorSpace[itr].next; • return ListItr<Object>(itr); • }

  13. Cursor Implementation (cont.) • template <class Object> • void List<Object>:: • insert(const Object &x, const ListItr<Object> &p) • { • if (!p.isPastEnd()) { int pos = p.current; • int tmp = alloc(); • cursorSpace[tmp] = • CursorNode(x, cursorSpace[pos].next); • cursorSpace[pos].next = tmp; • } • }

  14. Cursor Implementation (cont.) • template <class Object> • void List<Object>:: • remove(const Object &x) • { • ListItr<Object> p = findPrevious(x); • int pos= p.current; • if (cursorSpace[pos].next != 0) { • int tmp = cursorSpace[pos].next; • cursorSpace[pos].next = • cursorSpace[tmp].next; • free (tmp); • } • }

  15. Comparing Performance

More Related