Руководство по стандартной библиотеке шаблонов STL

       

int main


#include <iostream.h> #include <stl.h>

int main () { priority_queue<deque<int>, less<int> > q; q.push (42); q.push (101); q.push (69); while (!q.empty ()) { cout << q.top () << endl; q.pop (); } return 0; }



#include <iostream.h> #include <stl.h>

int main () { priority_queue<deque<char*>, greater_s> q; q.push ((char*) "cat"); q.push ((char*) "dog"); q.push ((char*) "ape"); while (!q.empty ()) { cout << q.top () << endl; q.pop (); } return 0; }


Содержание раздела