Iterators and Sequences 2010 Goodrich Tamassia Iterators and

  • Slides: 14
Download presentation
Iterators and Sequences © 2010 Goodrich, Tamassia Iterators and Sequences 1

Iterators and Sequences © 2010 Goodrich, Tamassia Iterators and Sequences 1

Containers and Iterators q q An iterator abstracts the process of scanning through a

Containers and Iterators q q An iterator abstracts the process of scanning through a collection of elements A container is an abstract data structure that supports element access through iterators n n q An iterator behaves like a pointer to an element n n q begin(): returns an iterator to the first element end(): return an iterator to an imaginary position just after the last element *p: returns the element referenced by this iterator ++p: advances to the next element Extends the concept of position by adding a traversal capability © 2010 Goodrich, Tamassia Iterators and Sequences 2

Containers q Data structures that support iterators are called containers q Examples include Stack,

Containers q Data structures that support iterators are called containers q Examples include Stack, Queue, Vector, List q Various notions of iterator: n (standard) iterator: allows read-write access to elements n const iterator: provides read-only access to elements n bidirectional iterator: supports both ++p and –p n random-access iterator: supports both p+i and p-i © 2010 Goodrich, Tamassia Iterators and Sequences 3

Iterating through a Container q The conventional way to iterate through an STL vector

Iterating through a Container q The conventional way to iterate through an STL vector © 2010 Goodrich, Tamassia Iterators and Sequences 4

Iterating through a Container q Let A be a container and p be an

Iterating through a Container q Let A be a container and p be an iterator for C for (p = A. begin(); p != A. end(); ++p) loop_body q Use of an iterator to compute the sum of an STL vector<int>: : iterator p; int sum = 0; for (p=V. begin(); p!=V. end(); p++) sum += *p; return sum; © 2010 Goodrich, Tamassia Iterators and Sequences 5

Implementing Iterators q Array-based n n Array A of n elements Index i that

Implementing Iterators q Array-based n n Array A of n elements Index i that keeps track of the cursor begin() = 0 end() = n (index following the last element) © 2010 Goodrich, Tamassia Iterators and Sequences 6

Implementing Iterators q Linked list-based n n Doubly-linked list L storing the elements, with

Implementing Iterators q Linked list-based n n Doubly-linked list L storing the elements, with sentinels for header and trailer Pointer to node containing the current element begin() = front node end() = trailer node (just after last node) © 2010 Goodrich, Tamassia Iterators and Sequences 7

STL Iterators in C++ q q Each STL container type A supports iterators: n

STL Iterators in C++ q q Each STL container type A supports iterators: n A: : iterator – read/write iterator type n A: : const_iterator – read-only iterator type n A. begin(), A. end() – return start/end iterators This iterator-based operators and methods: n *p: access current element n ++p, --p: advance to next/previous element n A. assign(p, q): replace A with contents referenced by the iterator range [p, q) (from p up to, but not including, q) n insert(p, e): insert e prior to position p n erase(p): remove element at position p n erase(p, q): remove elements in the iterator range [p, q) © 2010 Goodrich, Tamassia Iterators and Sequences 8

STL Vectors and Algorithms q #include <algorithm> © 2010 Goodrich, Tamassia Iterators and Sequences

STL Vectors and Algorithms q #include <algorithm> © 2010 Goodrich, Tamassia Iterators and Sequences 9

Sequence ADT q q The Sequence ADT is the union of the Array List

Sequence ADT q q The Sequence ADT is the union of the Array List and Node List ADTs Elements accessed by n n q q n n size(), empty() Array. List-based methods: n Index, or Position Generic methods: n q begin(), end() insert. Front(o), insert. Back(o) erase. Front(), erase. Back() insert (p, o), erase(p) Bridge methods: n at. Index(i), index. Of(p) at(i), set(i, o), insert(i, o), erase(i) © 2010 Goodrich, Tamassia Iterators and Sequences 10

Applications of Sequences q q The Sequence ADT is a basic, generalpurpose, data structure

Applications of Sequences q q The Sequence ADT is a basic, generalpurpose, data structure for storing an ordered collection of elements Direct applications: n n q Generic replacement for stack, queue, vector, or list small database (e. g. , address book) Indirect applications: n Building block of more complex data structures © 2010 Goodrich, Tamassia Iterators and Sequences 11

Linked List Implementation q q A doubly linked list provides a reasonable implementation of

Linked List Implementation q q A doubly linked list provides a reasonable implementation of the Sequence ADT Nodes implement Position and store: n n n q element link to the previous node link to the next node q q Position-based methods run in constant time Index-based methods require searching from header or trailer while keeping track of indices; hence, run in linear time Special trailer and header nodes/positions header trailer elements © 2010 Goodrich, Tamassia Iterators and Sequences 12

Array-based Implementation q q n n q elements We use a circular array storing

Array-based Implementation q q n n q elements We use a circular array storing positions A position object stores: Element Index Indices f and l keep track of first and last positions 0 1 3 positions S f © 2010 Goodrich, Tamassia 2 Iterators and Sequences l 13

Comparing Sequence Implementations Operation size, empty at. Index, index. Of, at begin, end set(p,

Comparing Sequence Implementations Operation size, empty at. Index, index. Of, at begin, end set(p, e) set(i, e) insert(i, e), erase(i) insert. Back, erase. Back insert. Front, erase. Front insert(p, e), erase(p) © 2010 Goodrich, Tamassia Iterators and Sequences Array 1 1 1 List 1 n 1 1 1 n n 1 14