Teaching with the STL

Similar documents
STL: C++ Standard Library

Standard Template Library

The Standard Template Library. An introduction

CS197c: Programming in C++

use static size for this buffer

Chapter 5. The Standard Template Library.

Lecture 21 Standard Template Library. A simple, but very limited, view of STL is the generality that using template functions provides.

CS11 Advanced C++ Fall Lecture 1

Programming in C++ using STL. Rex Jaeschke

STL components. STL: C++ Standard Library Standard Template Library (STL) Main Ideas. Components. Encapsulates complex data structures and algorithms

Standard Template Library. Containers, Iterators, Algorithms. Sequence Containers. Containers

COEN244: Class & function templates

Function Templates. Consider the following function:

Templates and Vectors

Standard Template Library

List, Stack, and Queues

SSE2034: System Software Experiment 3

Template based set of collection classes STL collection types (container types)

/ binary_search example #include <iostream> // std::cout #include <algorithm> // std::binary_search, std::sort #include <vector> // std::vector

STL Quick Reference for CS 241

Exceptions, Templates, and the STL

Purpose of Review. Review some basic C++ Familiarize us with Weiss s style Introduce specific constructs useful for implementing data structures

Writing Generic Functions. Lecture 20 Hartmut Kaiser hkaiser/fall_2013/csc1254.html

The Ada Standard Generic Library (SGL)

Dynamic Data Structures

19.1 The Standard Template Library

To know the relationships among containers, iterators, and algorithms ( 22.2).

Unit 1: Preliminaries Part 4: Introduction to the Standard Template Library

I source_beg, source_end; // defines a range of values in a source container // defines the beginning of a range in a destination container

When we program, we have to deal with errors. Our most basic aim is correctness, but we must

Outline. Variables Automatic type inference. Generic programming. Generic programming. Templates Template compilation

Arrays - Vectors. Arrays: ordered sequence of values of the same type. Structures: named components of various types

Unit 4 Basic Collections

CPSC 427a: Object-Oriented Programming

THE STANDARD TEMPLATE LIBRARY (STL) Week 6 BITE 1513 Computer Game Programming

EE 355 Unit 10. C++ STL - Vectors and Deques. Mark Redekopp

GridKa School 2013: Effective Analysis C++ Standard Template Library

G52CPP C++ Programming Lecture 18

Lecture-5. STL Containers & Iterators

Arrays. Returning arrays Pointers Dynamic arrays Smart pointers Vectors

Type Aliases. Examples: using newtype = existingtype; // C++11 typedef existingtype newtype; // equivalent, still works

CSCI-1200 Computer Science II Spring 2006 Test 3 Practice Problem Solutions

SAURASHTRA UNIVERSITY

G52CPP C++ Programming Lecture 18. Dr Jason Atkin

Short Notes of CS201

CS11 Advanced C++ Spring 2018 Lecture 2

CS201 - Introduction to Programming Glossary By

To use various types of iterators with the STL algorithms ( ). To use Boolean functions to specify criteria for STL algorithms ( 23.8).

CS11 Introduction to C++ Spring Lecture 8

Standard Library Reference

Lecture 12. Monday, February 7 CS 215 Fundamentals of Programming II - Lecture 12 1

Today. andyoucanalsoconsultchapters6amd7inthetextbook. cis15-fall2007-parsons-lectvii.1 2

Module 9. Templates & STL

Patterns: Working with Arrays

TDDD38 - Advanced programming in C++

Containers in C++ and Java

7 TEMPLATES AND STL. 7.1 Function Templates

PIC 10A. Lecture 23: Intro to STL containers

Container Notes. Di erent Kinds of Containers. Types Defined by Containers. C++11 Container Notes C++11

CS 103 Unit 12 Slides

Lectures 11,12. Online documentation & links

Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS

CSE030 Fall 2012 Final Exam Friday, December 14, PM

CS183 Software Design. Textbooks. Grading Criteria. CS183-Su02-Lecture 1 20 May by Eric A. Durant, Ph.D. 1

Vector. Vector Class. class Vector { public: typedef unsigned int size_type;

Abstract Data Types 1

Advanced C++ STL. Tony Wong

Largest Online Community of VU Students

Abstract Data Types. CptS 223 Advanced Data Structures. Larry Holder School of Electrical Engineering and Computer Science Washington State University

Computer Science II Lecture 2 Strings, Vectors and Recursion

Absolute C++ Walter Savitch

Arrays. Arizona State University 1

1. The term STL stands for?

STL Standard Template Library

C++ 프로그래밍실습. Visual Studio Smart Computing Laboratory

CSE 100: C++ TEMPLATES AND ITERATORS

Topics. bool and string types input/output library functions comments memory allocation templates classes

Abstract Data Types 1

Standard Template Library STL

Computational Physics

CSCI 102L - Data Structures Midterm Exam #2 Spring 2011

University of Waterloo Department of Electrical and Computer Engineering ECE 250 Data Structures and Algorithms. Final Examination

Polymorphism. Programming in C++ A problem of reuse. Swapping arguments. Session 4 - Genericity, Containers. Code that works for many types.

Where do we go from here?

CSCI-1200 Data Structures Fall 2010 Lecture 8 Iterators

Supplement I.A: Glossary. For Introduction to C++ Programming, Second Edition By Y. Daniel Liang

What will happen if we try to compile, link and run this program? Do you have any comments to the code?

STL. Prof Tejada Week 14

CSCI-1200 Data Structures Fall 2017 Lecture 9 Iterators & STL Lists

Exercise 6.2 A generic container class

Life cycle of an object

CSCI-1200 Data Structures Fall 2014 Lecture 8 Iterators

The C++ Standard Template Library

Preface to the Second Edition Preface to the First Edition Brief Contents Introduction to C++ p. 1 A Review of Structures p.

This chapter serves mainly to gather and organize information about iterators. Some new concepts are also introduced for completeness.

CSI33 Data Structures

Chapter 17: Linked Lists

Data Structures in C++ Using the Standard Template Library

AN OVERVIEW OF C++ 1

CSE 100: C++ TEMPLATES AND ITERATORS

Transcription:

Teaching with the STL Joseph Bergin Pace University Michael Berman Rowan College of New Jersey 1

Part 1 Introduction to STL Concepts 2

STL: What and Why Generic data structures (containers) and algorithms for operating upon them Part of the C++ definition Developed by Stepanov, Lee, and Musser Generic programming!= OOP (no encapsulation) Extensible -- you can add your own elements 3

Templates are not Classes These are not cookies You can t eat them They can be used to make cookies 4

Templates are not Classes These are cookies They are made with a cookie cutter You can eat them 5

Templates are not Cookies Templates are used to create classes You can t compile them You can instantiate them» This gives you a class The instantiations are compiled The instantiations are strongly typed like other classes 6

Templates are not Classes template <class E> class stack {... void push(e e){...} } <- A class template stack <int> S; <- a template class S.push(55); 7

Templates are not Functions template <class E> E& min(e& a, E& b) { if(a < b) return a; return b; } <- a function template abox = min(box1, box2); <- a template function 8

The Standard Template Library Containers» array, vector, deque, list, set, map, multiset, multimap Algorithms» sort, search, and nearly everything else Iterators» generalize pointers and pointer arithmetic Adaptors» change the behavior of other components Allocators» memory management 9

The Standard Template Library Containers» array, vector, deque, list, set, map, multiset, multimap Algorithms» sort, search, and nearly everything else Iterators» generalize pointers and pointer arithmetic Adaptors» change the behavior of other components Allocators» memory management 10

The Major Dimensions Independent Development of: Containers» contain values Algorithms» operate on containers Iterators» interface between containers and algorithms 11

The Major Dimensions Independent Development of: Iterators Containers» contain values Algorithms» operate on containers Iterators» interface between containers and algorithms Algorithms Containers 12

Simple Examples // Summing a list -- typical early assignment int main() { int sum(0); cout << "Enter your integers:\n"; while(1) { int entry; cin >> entry; if (cin.eof()) break; sum += entry; } cout << "The sum was " << sum << endl; return 0; } 13

just add STL! #include <algo.h> #include <iostream.h> int main() { cout << "Enter your integers:" << endl; // set up an input stream iterator for cin istream_iterator < int, ptrdiff_t > ciniter(cin), eos; // accumulate the sum using the input iterator int sum = accumulate(ciniter, eos, 0); cout << "The sum was " << sum << endl; return 0; } 14

Vector Manipulation vector<int> v; v.push_back(3); v.push_back(4); v.push_back(5); v.push_back(6); vector<int>::iterator i; for(i = v.begin(); i!= v.end(); ++i) cout << *i << endl; sort(v.begin(); v.end()); for(i = v.begin(); i!= v.end(); ++i) cout << *i << endl; 15

Sorting a file of strings cout << "Enter name of file to sort: "; string sortfilename; cin >> sortfilename; ifstream sortfile(sortfilename.c_str()); istream_iterator < string, ptrdiff_t > sortfileiter(sortfile), eos; vector < string > sortvector; copy(sortfileiter, eos, back_inserter(sortvector)); cout << "Sorting " << sortvector.size() << " words.\n"; sort(sortvector.begin(), sortvector.end()); ostream_iterator < string > coutiter(cout, "\n"); cout << "Sorted file is: \n"; copy(sortvector.begin(), sortvector.end(), coutiter); 16

Iterators are the Key Containers + Iterators + Algorithms = STL Programs 17

Iterator Flavors Forward Iterators (operator++)» Input Iterators» Output Iterators Bidirectional Iterators (operator --) Random Access Iterators (operator +=) 18

Iterator Flavors Forward Iterators (operator++)» Input Iterators» Output Iterators Bidirectional Iterators (operator --) Random Access Iterators (operator +=) All Iterators have operator* All Containers produce iterators begin() and end() begin references first. end is after last 19

Slouching Toward Iterators template < class T > void selectionsort(t elements[ ], int length) { for(int i = 0; i < length - 1; ++i) { int s = i; T small = elements[s] ; for(unsigned j = i + 1; j < length; ++j) if(elements[j] < small) { s = j; small = elements[s] ; } elements[s] = elements[i] ; elements[i] = small; } } Pt. 1: Dependent on Arrays 20

Pointer Duality Law int * A = new int [20]; ------------------------------------- A[i] is equivalent to *(A + i) A A + 6 (6 ints past A) 21

Slouching Towards Iterators int elements [20] =... selectionsort(elements, 20) int * start = elements; int * end = elements + 20; // or &elements[20] selectionsort(start, end); Pt. 2: The Goal 22

The Replacements template < class T > void selectionsort(t elements[ ], int length) { for(int i = 0; i < length - 1; ++i) { int s = i; T small = elements[s] ; for(unsigned j = i + 1; j < length; ++j) if(elements[j] < small) { s = j; small = elements[s] ; } elements[s] = elements[i] ; elements[i] = small; start = elements } end = elements + length } loc = & elements[s] where = & elements[i] inner = & elements[j] 23

Slouching Towards Iterators template < class T > void selectionsort(t* start, T* end) { for(t* where = start ; where < end - 1 ; ++where) { T* loc = where; T small = *loc; for(t* inner = where + 1; inner < end; ++inner) if(*inner < *loc) { loc = inner; small = *loc; } *loc = *where; *where = small; } } Pt 3: The Result (almost) 24

Slouching Towards Iterators template < class Iterator, class value_type> void selectionsort_aux(iterator start, Iterator end, value_type) { for(iterator where = start ; where < end - 1 ; ++where) { Iterator loc = where; value_type small = *loc; for(iterator inner = where + 1; inner < end; ++inner) if(*inner < *loc) { loc = inner; small = *loc; } *loc = *where; *where = small; } } Pt 3: The Result (...) 25

Slouching Towards Iterators template < class Iterator > inline void selectionsort (Iterator start, Iterator end) { selectionsort_aux(start, end, *start); } Pt 3: The Result! 26

The Advantages This version will sort more than arrays.» All we need is a structure referenced by a datatype like a pointer that implements operator * operator++ operator+ operator- operator= operator< With care we could reduce this list Such datatypes are called iterators 27

The Lesson Implement containers separate from algorithms Use pointer-like structures as an interfacing mechanism 28

The Lesson Implement containers separate from algorithms Use pointer-like structures as an interfacing mechanism To Gain 29

Advantages Generality A framework for thinking about containers and algorithms Smaller written code Smaller compiled code 30

Advantages Generality A framework for thinking about containers and algorithms Smaller written code Smaller compiled code But... 31

Disadvantages Students must become thoroughly familiar with all aspects of pointers including» The pointer duality law» Pointer arithmetic» Pointer gotchas 32

Iterators, Pro and Con Iterators make it possible for the STL to be efficient and flexible, but As an iterator-based library, the STL provides no safety for the user Basically, if you like C++, you will probably like the STL! 33

Exercise Rewrite this search function using Iterators: template <class T> int linearsearch(t a[], int length, T target) { } for (int i = 0; i < length; i++) if (target == a[i]) return i; // return position in array return -1; //use -1 to indicate item not found 34

Sample solution template <class Iterator, class T> Iterator linearsearch(iterator begin, Iterator end, T target) { for (Iterator i = begin; i < end; i++) if (target == *i) return i; return end; //use end to indicate item not found }. int a[] = {1, 2, 3, 4, 5}; if (int * pos = linearsearch(a, a+5, 4) < a+5) cout << "found " << *p << endl; else 35 cout << "not found\n";

Iterators for STL Containers Work like a pointer To access an individual member of a container, you dereference an iterator (*) Advance iterator with ++ Special past-the-end iterator used to mark end of container (improper to dereference) STL typically does not bounds check iterators Containers provide an iterator constructor 03/20/97 36

Extended Example: Using Vectors Vectors are a generic container provided by STL Similar to built-in arrays, but grow dynamically at the end 37

Vector example, p. 1 #include <iostream.h> #include <vector.h> #include <algo.h> template <class T> void vectorprint(char * label, vector<t> v) { } cout << label << endl; for (int i=0; i < v.size(); i++) cout << v[i] << '\t'; cout << "\n\n"; 38

Vector example, part 2 int main() { // create a vector containing ints from 1 to 10 vector<int> v1; for (int i = 0; i < 10; i++) v1.push_back(i+1); vectorprint("v1 initial state", v1); // create a second vector of the same size vector<int> v2(v1.size()); // copy vector v1 to v2 copy(v1.begin(), v1.end(), v2.begin()); vectorprint("v2 should be a copy of v1", v2); 39

Vector example, p.3 cout << "v1 == v2? " << (v1 == v2) << endl; // create another vector and fill it vector<double> v3(20); fill(v3.begin(), v3.begin() + 20, 3.14); vectorprint("vector v3", v3); // rotate the first vector rotate(v1.begin(), v1.begin()+5, v1.end()); vectorprint("v1 rotated", v1); // now, sort it sort(v1.begin(), v1.end()); vectorprint("v1 sorted", v1); 40

Vector example, p. 4 // find the location of 5 in v2 vector<int>::iterator loc; loc = find(v1.begin(), v1.end(), 5); cout << "this should be 5: " << *loc << endl; } 41

Exercise Write a program that reads in an arbitrary number of double-precision floating point numbers > 0.0, terminated by 0.0, puts them into a vector, sorts them, and finds the median. 42

Sample solution int main() { vector<double> v; double x; cin >> x; while (x > 0.0) { v.push_back(x); cin >> x; } sort(v.begin(), v.end()); if (v.size() % 2 == 0) // even case cout << (v[v.size()/2-1] + v[(v.size()/2)])/2 << endl; else cout << v[v.size()/2] << endl; } 43

Five classes of iterators Iterators classified by the operations they support input» can be compared (==,!=), incremented, dereferenced as rvalue (assign from)» usually used with input streams (cin)» single pass output» compared, dereferenced as lvalue (assign to)» usually used with output streams (cout)» single pass 03/20/97 44

Iterator Classes forward» union of features of input/output iterators» plus, can be traversed more than once bidirectional» does everything a forward iterator does» plus, can traverse in reverse, using -- 03/20/97 45

Iterator Classes random access» does everything a bidirectional iterator does» plus can access any location in constant time» supports pointer-like arithmetic, e.g. i + 7» can compare relationally: <, >, <=, >= 46

Relationship among algorithms, iterators, containers Iterators form a hierarchy random access bidirectional forward input output Algorithms classified by the iterators they require; containers by the iterators they support If an algorithm requires a particular iterator, it can also use those higher in the hierarchy 03/20/97 47

Sample Relationships Lists provide bidirectional iterators (not random access) so you can t use the sort algorithm, nor can you use a list as a heap. (But lists have a special sort method.) The next_permutation algorithm requires a bidirectional iterator, so you can use it on a list (or a vector ) but not on the input stream. 03/20/97 48

Containers Objects that store other objects All STL containers are generic (templated) but homogeneous Built-in C-style arrays work as containers Sequence Containers: vector, deque, list Associative Containers: set, multiset, map, multimap 03/20/97 49

Containers Ordinary Arrays (I.e. regions of memory) Vectors -- expandable array Deques -- expandable at both ends Lists -- doubly linked circular with header Sets and Multisets -- red-black tree Maps and Multimaps -- dictionary like Note: Implementation is not specified but efficiency is specified. 50

All Containers Provide A Storage Service» insert and erase... An Associated Iterator type» The type of iterator determines what can be done with the container. begin() and end() iterators - - - [b, e) A collection of types: vector::value_type... constructors, assignment, cast, equality... 51

Sequence Containers vector» O(1) access to any element, O(1) (amortized) to add to end, O(n) to add elsewhere» grows dynamically as objects added to end; vector handles storage management» use [ ] syntax to access elements» use push_back() to add to end of vector (and grow size), insert() to add within (also pop_back()» Fastest (average) container for most purposes. 03/20/97 52

Vector Example vector < int > v; v.push_back(47); v.push_back(17); cout << v.size() << \t << v[0] << \t << v[1] << endl; 2 47 17 03/20/97 53

Sequence Containers deque» Expandable array at both ends» push_front, pop_front» Average O(1) insert at both ends» Linear insert in middle» Random Access Iterators» Good choice for queues & such. 03/20/97 54

Deque Example deque < char > dc; dc.push_back('h'); dc.push_back('o'); dc.push_front('i'); dc.push_front('h'); cout << dc.size() << \t << dc[0] << dc[1] << dc[2] << dc[3] endl; 2 hiho 03/20/97 55

Sequence Containers list» doubly-linked list» O(1) insertions, no random access» Slower on average than vector or deque» special functions for splicing, merging, etc.» can use push_front, push_back, and insert» access items using bidirectional iterators 56

Associative Containers: sets and multisets two template parameters: a key type and a comparison relation (sets are ordered) insert and find operations are O(log n) so really, a set is a balanced binary tree that stores just keys (no associated data) only difference between set and multiset is duplicate keys in multiset 03/20/97 57

Set example set < int, greater < int > > intset; intset.insert(2); intset.insert(2); intset.insert(7); cout << intset.count(2) << \t << intset.count(17) << endl; 1 0 58

Associative Containers: Maps and Multimaps Just like a set, except key/data pairs e.g. a symbol table, a dictionary Performance is tree-like, i.e. O(log n) Can retrieve the members in order, using iterators Uses the parameterized type pair < keytype, datatype > 03/20/97 59

Iterator classes for STL containers random access: vector, deque, C array bidirectional: list, set, multiset, map, multimap input: istream, const C array output: ostream 03/20/97 60

Algorithms Defined in terms of a specific iterator type» e.g. sort requires random access iterators Work with all containers that provide that iterator type -- including user written. Combine good generality w/ good efficiency Do not appear within container classes (generally)» This is important to generality & efficiency 61

Classification of Algorithms Non-mutating sequence algorithms» do not modify contents of container» most require a pair of iterators, specifying a range» e.g.: find, for_each, count Mutating sequence algorithms» modify contents» e.g.: copy, fill, reverse, rotate 03/20/97 62

Example: find int a[] = {1,2,3,14,4}; vector<int> v(a, a+5); // construct vector from array vector<int>::iterator v_loc; v_loc = find(v.begin(), v.end(), 3); // v_loc is now an iterator pointing to 3 in v list<int> l(a, a+5); // construct a list from array list<int>::iterator list_loc; list_loc = find(l.begin(), l.end(), 4); // list_loc is an iterator pointing to 4 in l list_loc = find(l.begin(), l.end(), -1); // list_loc is an iterator pointing to l.end() // to indicate failure 63

Example: for_each void print_char(char c) { cout << c << endl; } int main() { char s[] = "abcdefg"; vector<char> vc(s, s + strlen(s)); set<char> sc(s, s + strlen(s)); for_each(vc.begin(), vc.end(), print_char); for_each(s, s+strlen(s), print_char); for_each(sc.begin(), sc.end(), print_char); } 64

Classification of Algorithms Sorting and related» sort, nth_element, binary_search, min/max Numeric» accumulate, inner_product, partial_sum 65

Function Objects 1 Predicates» A function of one argument returning bool Comparisons» A function of two arguments returning bool Unary Operator, Binary Operator» A function of one or two arguments returning a value 66

Function Objects 2 Can be functions or template functions Can be objects implementing an appropriate operator() Many are built in» less..., plus..., and...,... Function adaptors too» not1, not2, bind1st, bind2nd,... 67

Function Object Example class stringless { bool operator()(char* s1, char* s2) { return strcmp(s1, s2) < 0; }... } // Defines a function object. vector< char* > stringvec;... sort (stringvec.begin(), stringvec.end(), stringless()); // Note the constructor call in the last argument ^^^^ 68

Adaptors Change the interface of a component Example: stack adaptor lets you use a list or deque with push and pop insert iterator adaptors: used to grow a container. Most common is back_inserter() istream_iterator, ostream_iterator let you use input and output streams as containers 03/20/97 69

Stack/Queue example (part 1) typedef list < int > intlist; stack < intlist > s; queue < intlist > q; cout << "Enter some numbers for the stack & queue:\n"; // set up an input stream iterator for cin istream_iterator < int, ptrdiff_t > ciniter(cin), eos; // put items onto stack and queue for ( ; ciniter!= eos; ciniter++) { s.push(*ciniter); q.push(*ciniter); } 03/20/97 70

Stack/Queue Example (Part 2) // pop items from the stack and print them out cout << "Here's what you get when " << " you pop the stack: "; while(!s.empty()) { cout << s.top() << " "; s.pop(); } cout << "\n\nhere's what you get when" << " you pop the queue: "; while(!q.empty()) { cout << q.front() << " "; q.pop(); } cout << "\n\n"; 03/20/97 71

Extended example: Counting words Read in a file, identify all words that appear more than once, list them with number of appearances Algorithm:» read all words into a vector of strings» sort the vector» look for repeated words, count them, put them into a map» index in map is # of appearances; data is list of words 03/20/97 72

word map data structure count word lists 4 (and, or, of) 3 (we, can) 2 (STL, template, Utica, pistachio) Acknowledgment: example inspired by the anagram program of Musser and Saini. 03/20/97 73

word count (part 1) // First, open input file, set up iterator for reading cout << "Enter name of file to process: "; string infilename; cin >> infilename; ifstream infile(infilename.c_str()); istream_iterator < string, ptrdiff_t > infileiter(infile), eos; // Set up wordvector to hold the string input, and get // it from input file, // then sort it to prepare for processing typedef vector < string > stringvector; stringvector wordvector; copy(infileiter, eos, back_inserter(wordvector)); cout << "Read in " << wordvector.size() << " words.\n"; sort(wordvector.begin(), wordvector.end()); 03/20/97 74

word count (part 2) // Now set up a map to hold the duplicated words. // The key field is the number of times the word occurs, // and the data field is a list of all words that occurred // that number of times. // The map is organized from largest to smallest. typedef map < int, list < string >, greater < int > > stringcountmap; stringcountmap wordmap; // create an iterator "current" for wordvector, // then process the vector, // looking for duplicated words and entering them into wordmap stringvector::iterator current = wordvector.begin(); while (current!= wordvector.end()) { // set current to next occurrence of a duplicated word current = adjacent_find(current, wordvector.end()); if (current == wordvector.end()) break; 03/20/97 75

word count (part 3) // find the next word that *doesn't* match the current word, // thus setting up an open interval [current, nextwordpos) // that marks all matching words stringvector::iterator nextwordpos = find_if(current+1, wordvector.end(), not1(bind1st(equal_to<string>(), *current))); // add the word to the list at the appropriate map entry, // determined by the number of times it's in the vector wordmap[nextwordpos-current].push_back(*current); // continue processing the vector at the next word current = nextwordpos; } 03/20/97 76

word count (part 4) // set up an output iterator and present results ostream_iterator < string > coutiter(cout, "\n"); cout << "map file is: \n"; // iterate through the map, print the key // (which indicates the number of // occurrences of the word), then copy the list // of words to output stringcountmap::const_iterator wordmapiter = wordmap.begin(); for (; wordmapiter!= wordmap.end(); ++wordmapiter) { cout << "Count " << (*wordmapiter).first << ":\n"; copy((*wordmapiter).second.begin(), (*wordmapiter).second.end(), coutiter); cout << "----\n\n"; } 03/20/97 77

Sample output Enter name of file to process: cx6.cpp Read in 441 words. map file is: Count 26: // ---- Count 23: the ---- Count 12: of ---- Count 9: << ---- Count 8: #include to ---- Count 7: < and string ---- Count 6: in words ---- etc. 03/20/97 78

Extending the STL Not standardized but available» hash_set» hash_map» hash_multiset» hash_multimap Like set... but have a (self reorgainzing) hashed implementation Constant average time for insert/erase 79

STL in Java ObjectSpace has developed an equivalent library for Java (JGL) Java Generic Library Public domain, available on internet. Depends on run-time typing instead of compile time typing, but is otherwise equivalent. 80

Resources http://csis.pace.edu/~bergin http://www.objectspace.com http://www.cs.rpi.edu/~musser/stl.html http://weber.u.washington.edu/~bytewave/ bytewave_stl.html ftp.cs.rpi.edu/pub/stl http://www.sgi.com/technology/stl/ http://www.cs.brown.edu/people/jak/ programming/stl-tutorial/home.html 81

Books Data Structures Programming with the STL, Bergin, Springer-Verlag (to appear) STL Tutorial and Reference Guide, Musser and Saini, Addison-Wesley, 1996 The STL <primer>, Glass and Schuchert, Prentice-Hall, 1996 The Standard Template Library, Plauger, Stepanov, and Musser, Prentice-Hall, 1996 82

map and multimap Ordered set (multiset) of key-value pairs Kept in key order O(lg n) inserts and deletions Bidirectional iterators Good choice for dictionaries, property lists, & finite functions as long as keys have comparison operation 83

vector Expandable array -- operator[] push_back, pop_back Average O(1) insert at end. O(n) insert in middle Random Access Iterators Fastest (average) container for most purposes. 84

deque Expandable array at both ends push_front, pop_front Average O(1) insert at both ends Linear insert in middle Random Access Iterators Good choice for queues & such. 85

list Doubly linked list O(1) inserts everywhere, but slower on average than vector and deque Bidirectional iterators Some specialized algorithms (sort). 86

set and multiset Sorted set (multiset) of values O(lg n) inserts and deletions» Balanced binary search tree Sorted with respect to operator< or any user defined comparison operator Bidirectional iterators Good choice if elements must stay in order. 87

All Iterators Provide operator*» may be readonly or read/write copy constructor operator++ and operator++(int) operator== and operator!= Most provide operator= 88

Specialized Iterators Forward» provide operator= Bidirectional (extend forward)» provide operator-- and operator--(int) Random Access (extend bidirectional)» provide operator<..., operator+=..., operator- 89