参见http://www.cplusplus.com/reference/set/multiset/

template < class T,                                     // multiset::key_type/value_type
                 class Compare = less<T>,        // multiset::key_compare/value_compare
                 class Alloc = allocator<T> >    // multiset::allocator_type
              > class multiset;

Multiple-key set
Multisets are containers that store elements following a specific order, and where multiple elements can have equivalent values.
[multiset中的元素会按指定次序进行排序,且元素可以重复]
In a multiset, the value of an element also identifies it (the value is itself the key, of type T). The value of the elements in a multiset cannot be modified once in the container (the elements are always const), but they can be inserted or removed from the container.
[在multiset中的元素不能被修改(因此multiset中没有重载operator[]),但可以向集合中插入元素或者删除元素]]
Internally, the elements in a multiset are always sorted following a specific strict weak ordering criterion indicated by its internal comparison object (of type Compare).
[在内部实现中,multiset中的元素总是通过内部的比较对象按照特定的严格弱排序来进行排列]
Multisets are typically implemented as binary search trees.
[multiset的典型实现是通过二进制搜索树

/*
//constructing multiset
multiset (const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type());
multiset (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type());
multiset (const multiset& x); iterator begin();
iterator end();
reverse_iterator rbegin();
reverse_iterator rend(); void clear();
bool empty() const;
size_type size() const;
void swap(multiset& x);
size_type count(value_type& val) const;
multiset& operator=(const multiset& x);
iterator find(const value_type& value);
*/
#include <iostream>
#include <set> int main()
{
int myints[] = {, , , , , , };
std::multiset<int> mymultiset(myints, myints+);
std::cout<<"73 appears "<<mymultiset.count()<<" times in mymultiset.\n"; system("pause");
return ;
}
/*
//insert
iterator insert (const value_type& val);
iterator insert (iterator position, const value_type& val);
void insert (InputIterator first, InputIterator last); insert element
Extends the container by inserting new elements, effectively increasing the container size by the number of elements inserted.
[通过插入的元素来有效地增加容器大小]
Internally, multiset containers keep all their elements sorted following the criterion specified by its comparison object. The elements are always inserted in its respective position following this ordering.
[在内部实现中,multiset容器会用比较对象(comparison object)将元素进行排序,因此插入操作也是根据这一点插入到相对位置] Return value
In the versions returning a value, this is an iterator pointing to the newly inserted element in the multiset.
[该函数返回一个指向新插入元素的迭代器(如果有返回值的话)]
Member type iterator is a bidirectional iterator type that points to elements.
[成员类型iterator是一个指向元素的双向迭代器类型] 注:
position Hint for the position where the element can be inserted.
[position的作用是建议元素被插入的位置]
The function optimizes its insertion time if position points to the element that will precede the inserted element.
[如果position对应的元素在插入元素之前的话,该函数会优化插入时间]
Notice that this is just a hint and does not force the new element to be inserted at that position within the multimap container (the elements in a multimap always follow a specific order depending on their key).
[要注意的是,position只是建议元素的插入位置,而不是强制,另外,multiset中的元素会根据前面所述方法进行排序]
*/ #include <iostream>
#include <set> int main ()
{
std::multiset<int> mymultiset;
std::multiset<int>::iterator it; // set some initial values:
for (int i=; i<=; i++) mymultiset.insert(i*); // 10 20 30 40 50 it=mymultiset.insert(); it=mymultiset.insert (it,); // max efficiency inserting
it=mymultiset.insert (it,); // max efficiency inserting
it=mymultiset.insert (it,); // no max efficiency inserting (24<29) int myints[]= {,,};
mymultiset.insert (myints,myints+); std::cout << "mymultiset contains:";
for (it=mymultiset.begin(); it!=mymultiset.end(); ++it)
std::cout << ' ' << *it;
std::cout << '\n'; system("pause");
return ;
}
/*
//erase
void erase (iterator position);
size_type erase (const value_type& val);
void erase (iterator first, iterator last); Return value
For the key-based version (2), the function returns the number of elements erased.
[第二种方式会返回被删除元素的个数]
*/ #include <iostream>
#include <set> int main ()
{
std::multiset<int> mymultiset;
std::multiset<int>::iterator it; // insert some values:
mymultiset.insert (); //
for (int i=; i<; i++) mymultiset.insert(i*); // 10 20 30 40 40 50 60 it=mymultiset.begin();
it++; // ^ mymultiset.erase (it); // 10 30 40 40 50 60 mymultiset.erase (); // 10 30 50 60 it=mymultiset.find ();
mymultiset.erase ( it, mymultiset.end() ); // 10 30 std::cout << "mymultiset contains:";
for (it=mymultiset.begin(); it!=mymultiset.end(); ++it)
std::cout << ' ' << *it;
std::cout << '\n'; system("pause");
return ;
}
/*
iterator lower_bound(const value_type &k) //返回>=k的第一个元素的位置
iterate upper_bound(const value_type &k) //返回>k的第一个元素的位置 Return iterator to lower bound
Returns an iterator pointing to the first element in the container which is not considered to go before val (i.e., either it is equivalent or goes after).
[返回一个指向容器中第一个不在k之前的元素的迭代器(即指向元素等于或大于k)]
The function uses its internal comparison object (key_comp) to determine this, returning an iterator to the first element for which key_comp(element,val) would return false.
[该函数利用内部的比较对象来比较,返回的迭代器指向的是第一个使得key_comp(element, val)返回false的元素]
If the multiset class is instantiated with the default comparison type (less), the function returns an iterator to the first element that is not less than val.
[如果multiset类的实例化使用的是默认的比较类型(less), 则该函数返回的迭代器指向的是第一个不小于(即大于等于)k的元素]
A similar member function, upper_bound, has the same behavior as lower_bound, except in the case that the multiset contains elements equivalent to val: In this case lower_bound returns an iterator pointing to the first of such elements, whereas upper_bound returns an iterator pointing to the element following the last.
[upper_bound函数的行为与lower_bound相同,只不过upper_bound返回的迭代指向的是第一个大于k的元素]
*/ #include <iostream>
#include <set> int main ()
{
std::multiset<int> mymultiset;
std::multiset<int>::iterator itlow,itup; for (int i=; i<; i++) mymultiset.insert(i*); // 10 20 30 40 50 60 70 itlow = mymultiset.lower_bound (); // ^
itup = mymultiset.upper_bound (); // ^ mymultiset.erase(itlow,itup); // 10 20 50 60 70 std::cout << "mymultiset contains:";
for (std::multiset<int>::iterator it=mymultiset.begin(); it!=mymultiset.end(); ++it)
std::cout << ' ' << *it;
std::cout << '\n'; system("pause");
return ;
}
/*
key_compare key_comp() const;
value_compare value_comp() const; Return comparison object
Returns a copy of the comparison object used by the container.
[返回容器中被用来比较元素的比较对象的拷贝]
By default, this is a less object, which returns the same as operator<.
[默认情况下是一个less对象,该对象返回的结果如同operator<]
This object determines the order of the elements in the container: it is a function pointer or a function object that takes two arguments of the same type as the container elements, and returns true if the first argument is considered to go before the second in the strict weak ordering it defines, and false otherwise.
[比较对象决定了容器中元素的排序,比较对象是一个函数指针或者一个函数对象,该函数指针或者函数对象有两个相同类型的参数,如果按照严格弱排序,第一个参数排在第二个参数之前则返回true,否则返回false]
Two elements of a multiset are considered equivalent if key_comp returns false reflexively (i.e., no matter the order in which the elements are passed as arguments).
[如果key_comp()返回false则认为这两个key是相等的]
In multiset containers, the keys to sort the elements are the values themselves, therefore key_comp and its sibling member function value_comp are equivalent.
[在multiset容器中,用来对元素进行排序的key值就是value值本身,因此key_comp和其兄弟成员函数value_comp是相同的]
*/ #include <iostream>
#include <set> int main ()
{
std::multiset<int> mymultiset; for (int i=; i<; i++) mymultiset.insert(i); std::multiset<int>::key_compare mycomp = mymultiset.key_comp(); std::cout << "mymultiset contains:"; int highest = *mymultiset.rbegin(); std::multiset<int>::iterator it = mymultiset.begin();
do {
std::cout << ' ' << *it;
} while ( mycomp(*it++,highest) ); std::cout << '\n'; system("pause");
return ;
}
/*
pair<iterator,iterator> equal_range (const value_type& val) const; Get range of equal elements
Returns the bounds of a range that includes all the elements in the container that are equivalent to val.
[返回包含所有与val相等的元素的区间]
If no matches are found, the range returned has a length of zero, with both iterators pointing to the first element that is considered to go after val according to the container's internal comparison object (key_comp).
[如果没有匹配元素,该区间长度为0,且两个迭代器都会指向容器中第一个大于val的元素] Return value
The function returns a pair, whose member pair::first is the lower bound of the range (the same as lower_bound), and pair::second is the upper bound (the same as upper_bound).
[该函数返回一个pair,其中first指的是区间的lower bound,second指的是区间的upper bound]
*/ #include <iostream>
#include <set> typedef std::multiset<int>::iterator It; int main()
{
int myints[]= {,,,,,};
std::multiset<int> mymultiset (myints, myints+); // 2 16 30 30 30 77 std::pair<It,It> ret = mymultiset.equal_range(); // ^ ^ mymultiset.erase(ret.first,ret.second); std::cout << "mymultiset contains:";
for (It it=mymultiset.begin(); it!=mymultiset.end(); ++it)
std::cout << ' ' << *it;
std::cout << '\n'; system("pause");
return ;
}

STL之multiset的更多相关文章

  1. 转自http://blog.sina.com.cn/daylive——C++ STL set&multiset

    C++ STL set和multiset的使用 1,set的含义是集合,它是一个有序的容器,里面的元素都是排序好的,支持插入,删除,查找等操作,就  像一个集合一样.所有的操作的都是严格在logn时间 ...

  2. [STL]set/multiset用法详解[自从VS2010开始,set的iterator类型自动就是const的引用类型]

    集合 使用set或multiset之前,必须加入头文件<set> Set.multiset都是集合类,差别在与set中不允许有重复元素,multiset中允许有重复元素. sets和mul ...

  3. STL set multiset map multimap unordered_set unordered_map example

    I decide to write to my blogs in English. When I meet something hard to depict, I'll add some Chines ...

  4. STL::set/multiset

    set:  Sets are containers that store unique elements following a specific order.集合里面的元素不能修改,只能访问,插入或 ...

  5. STL - 容器 - MultiSet

    MultiSet根据特定排序准则,自动将元素排序.MultiSet允许元素重复.一些常规操作:MultiSetTest.cpp #include <iostream> #include & ...

  6. C++STL之multiset多重集合容器

    multiset多重集合容器 multiset与set一样, 也是使用红黑树来组织元素数据的, 唯一不同的是, multiset允许重复的元素键值插入, 而set则不允许. multiset也需要声明 ...

  7. stl之multiset容器的应用

    与set集合容器一样,multiset多重集合容器也使用红黑树组织元素数据,仅仅是multiset容器同意将反复的元素健值插入.而set容器则不同意. set容器所使用的C++标准头文件set.事实上 ...

  8. 2.8 C++STL set/multiset容器详解

    文章目录 2.8.1 引入 2.8.2 代码示例 2.8.3 代码运行结果 2.8.4 对组pair的补充 代码实例 运行结果 总结 2.8.1 引入 set/multiset容器概念 set和mul ...

  9. 详解C++ STL multiset 容器

    详解C++ STL multiset 容器 本篇随笔简单介绍一下\(C++STL\)中\(multiset\)容器的使用方法及常见使用技巧. multiset容器的概念和性质 \(set\)在英文中的 ...

随机推荐

  1. QQ聊天信息提取

    先前在iOS 8.x版时,往往未能顺利取出QQ的聊天信息,即使顺利取出数据库,却发现聊天信息已被加密处理,仅只能得知是与哪些QQ号进行聊天,而未能顺利得知聊天内容. 但这个情况到后来有了变化,以下情境 ...

  2. IOS懒人笔记应用源码

    这个源码是懒人笔记应用源码,也是一个已经上线的apple应用商店的应用,懒人笔记iOS客户端源码,支持语音识别,即将语音转化成文本文字,所用语音识别类库为讯飞语音类库. 懒人笔记是一款为懒人设计的笔记 ...

  3. nginx负载均衡配置一(反向代理)

    一.前提 1:系统linux(centos) 2:nginx代理服务器(web:192.168.1.10  proxy.abc.com) 3:nginx后台服务器(web1:192.168.1.11 ...

  4. 【Linux】程序内获取文件系统挂载信息

    Linux shell可通过查看/etc/mtab或者/proc/mounts文件来获取当前文件系统挂载信息,示例: 程序内读取/etc/mtab或者/proc/mounts,解析字符串较为繁琐,可以 ...

  5. ASP.NET中@Page指令中的AutoEventWireup

    AutoEventWireup:指示控件的事件是否自动匹配 (Autowire).如果启用事件自动匹配,则为 true:否则为 false.默认值为 true.如果设为false,则事件不可用.有关更 ...

  6. [leetcode]_Binary Tree Inorder Traversal

    题目:二叉树的中序遍历. 思路:用递归来写中序遍历非常简单.但是题目直接挑衅说,----->"Recursive solution is trivial".好吧.谁怕谁小狗. ...

  7. MongoDB(4):多种方式关闭服务命令

    http://blog.csdn.net/czw698/article/details/8791153 MongoDB 提供几种关闭服务的命令,具体为以下: 一 使用 Crtl+C 关闭  [mong ...

  8. 文本分析工具awk简单示例

    先创建一个文件:vim hi 取第2个字段和第3个字段: awk '{print $2,$3}' hi     注意{}中的,逗号会在输出的时候转变为空格 加入字符说明: 显示整行: 指定字段分隔符: ...

  9. linux基本使用(一)

    分区1./ 根分区2. swap 交换分区(大小建议是内存的1~2倍)3. /home 分区4./boot 引导文件(启动加载)分区5./var 等,最低 要有前2个分区吧,最好有home分区,因为没 ...

  10. 有趣的EditView为空时的抖动效果(用户名和密码)--第三方开源--ClearEditText

    ClearEditText在github上的链接地址是:https://github.com/zhangphil/ClearEditText 用法十分简单,在布局中使用ClearEditText,在J ...