Читайте также: |
|
void swap(Stack & that);
Stack & operator=(Stack & that);
Class Queue
На основе динамического массива.
Дополнительный набор методов:
void push_back(T &value);
Void pop_front(void);
T& front(void);
Void erase (iterator p);
iterator insert(iterator position, const T& value);
T& at(int i);
void swap(Queue & that);
Queue & operator=(Queue & that);
Class Queue
На основе списка.
Дополнительный набор методов:
void push_back(T &value);
Void pop_front(void);
T& front(void);
Void erase (iterator p);
iterator insert(iterator position, const T& value);
void swap(Queue & that);
Queue & operator=(Queue & that);
Class Map
На основе динамического массива.
Дополнительный набор методов:
Struct pair - смотри сpp14.txt
T& operator[](const Key& x);
iterator find(const Key& x);
size_type count(const Key& x);
pair<iterator, bool> insert(const value_type& x);
Void erase(iterator position);
size_type erase(const Key& x);
void swap(Map & that);
Map & operator=(Map & that);
Class Map
На основе списка.
Дополнительный набор методов:
Struct pair - смотри сpp14.txt
T& operator[](const Key& x);
iterator find(const Key& x);
size_type count(const Key& x);
pair<iterator, bool> insert(const value_type& x);
Дата добавления: 2015-07-11; просмотров: 68 | Нарушение авторских прав
<== предыдущая страница | | | следующая страница ==> |
Void erase (iterator p); | | | Void erase(iterator position); |