STL – Standard Template Library
September 22, 2016
CMPE 250 STL – Standard Template Library September 22, 2016 1 / 25
STL Standard Template Library September 22, 2016 CMPE 250 STL - - PowerPoint PPT Presentation
STL Standard Template Library September 22, 2016 CMPE 250 STL Standard Template Library September 22, 2016 1 / 25 STL Standard Template Library Collections of useful classes for common data structures Ability to store objects of
CMPE 250 STL – Standard Template Library September 22, 2016 1 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 2 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 3 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 4 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 5 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 6 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 7 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 8 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 9 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 10 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 11 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 12 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 13 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 14 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 15 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 16 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 17 / 25
#include <iostream> // cin, cout #include <queue> // queue using namespace std; int main () { queue<int> myqueue; int myint; cout << "Please enter some integers (enter 0 to end):\n"; do { cin >> myint; myqueue.push (myint); } while (myint); cout << "myqueue contains: "; while (!myqueue.empty()) { cout << ’ ’ << myqueue.front(); myqueue.pop(); } cout << ’\n’; return 0; }
CMPE 250 STL – Standard Template Library September 22, 2016 18 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 19 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 20 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 21 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 22 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 23 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 24 / 25
CMPE 250 STL – Standard Template Library September 22, 2016 25 / 25