Читайте также: |
|
size_type erase(const Key& x);
void swap(Map & that);
Map & operator=(Map & that);
Class MultiMap
На основе динамического массива.
Дополнительный набор методов:
Struct pair - смотри сpp14.txt
iterator find(const Key& x);
iterator lower_bound(const Key& x);
iterator upper_bound(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(MultiMap & that);
MultiMap & operator=(MultiMap & that);
Class MultiMap
На основе списка.
Дополнительный набор методов:
Struct pair - смотри сpp14.txt
iterator find(const Key& x);
iterator lower_bound(const Key& x);
iterator upper_bound(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(MultiMap & that);
MultiMap & operator=(MultiMap & that);
Class Set
На основе списка.
Дополнительный набор методов:
iterator find(const Key& x);
size_type count(const Key& x);
iterator insert(const value_type& x);
Void erase(iterator position);
size_type erase(const Key& x);
bool operator==(Set& that);
bool operator!=(Set& that);
Class Set
Дата добавления: 2015-07-11; просмотров: 59 | Нарушение авторских прав
<== предыдущая страница | | | следующая страница ==> |
T& at(int i); | | | На основе динамического массива. |