Linked Lists Useful when the number of elements is not known in advance or varies widely during execution Allows efficient insertion and removal, sequential access HeadABC
Useful Linked List Functions Constructors and assignment: –list L; // default constructor –list L (L2); // copy constructor –L = L2;// assignment operator Element access: –L.front();// first item in the list –L.back();// last item in the list Size: –L.empty();// true if list is empty –L.size();// returns the number of items
Useful Linked List Functions (cont) Iterators: –list ::iterator i;// declare a new iterator –L.begin();// starting iterator –L.end();// ending iterator Insertion and removal: –L.push_front(value);// add value to front of the list –L.push_back(value);// add value to end of the list –L.insert(iterator,value);// add value at specified location –L.pop_front();// remove item from front of list –L.pop_back();// remove item from end of list –L.erase(iterator);// remove referenced item –L.remove(value);// remove all occurrences of value
Linked List Functions - Examples Constructors: –list L1;// create a new (empty) list // of integers –list L2;// create a new (empty) list // of pointers to widgets –list L3;// create a new (empty) list // of widgets –list L4 (L1);// copy constructor
Linked List Functions – Examples (cont) Assignment: –list L3;// create a new (empty) list // of widgets –list L5; // create a new (empty) list // of widgets –…// add some items to L3 –L5 = L3;// assignment
Linked List Functions – Examples (cont) Adding elements: –L.push_front(7); L123L7132
Linked List Functions – Examples (cont) Adding elements: –L.push_back(7); L123L1273
Linked List Functions – Examples (cont) Adding elements: –L.insert(L.end(),8); L123L1283
Linked List Functions – Examples (cont) Adding elements: –list ::iterator loc = find(L.begin(),L.end(),2); –loc = L.insert(loc,8); L123L1832
Linked List Functions – Examples (cont) Deleting elements: –L.pop_front(); L123L32
Linked List Functions – Examples (cont) Deleting elements: –L.pop_back(); L123L21
Linked List Functions – Examples (cont) Deleting elements: –L.remove(17); L83L1783
Linked List Functions – Examples (cont) Deleting elements: –list ::iterator i = find(L.begin(),L.end(),3); –L.erase(i); L124L1243
Linked List Functions – Examples (cont) Deleting elements: –list ::iterator start = find(L.begin(),L.end(),2); –list ::iterator stop = find(L.begin(),L.end(),5); –L.erase(start,stop); L12534L125
Linked List Functions – Examples (cont) Number of elements: –cout << There are << L.size() << elements in the list 5 L12534
Linked List Functions – Examples (cont) Number of elements: –if (L1.empty()) cout << L1 is empty –if (!L2.empty()) cout << L2 is not empty L1 is empty L2 is not empty L L2
Linked List Functions – Examples (cont) Number of elements: –int num=0; –count(L1.begin(),L.end(),7,num); –cout << L1 contains << num << 7s L1 contains 2 7s L
Linked List Functions – Examples (cont) Miscellaneous: –L1.sort(); L
Linked List Functions – Examples (cont) Miscellaneous: –L1.reverse(); L
Insert Iterators Assignment to an iterator is normally an overwriting operation (replaces the contents of the target): copy(L2.begin(),L2.end(),L1.begin()); L183L2125L1125
Insert Iterators (cont) For lists (and sets) often instead want to perform insertion. Can use a list insertion iterator: copy(L2.begin(),L2.end(),back_inserter(L1)); L183L2125L183512
Insert Iterators (cont) In addition to back_inserter (which adds one list to the end of another) there is also: –front_inserter – adds one list to the front of another –Inserter – inserts one list in another at the position pointed to by an iterator An insert iterator is a form of adaptor –An adaptor changes the interface of an object but does little or no work itself –The insert iterator changes the list insert interface into the iterator interface
Example Program – Inventory System A business, World Wide Widget Works, manufactures widgets class Widget { public: Widget():id_number(0){} // constructor Widget(int a):id(a) {} // constructor // operations int id() {return id_number}; void operator = (Widget & rhs) {id.number = rhs.id_number;} bool operator == (Widget & rhs) {id.number == rhs.id_number;} bool operator < (Widget & rhs) {id.number < rhs.id_number;} protected: int id_number; // widget identification number };