📄 cppmultimap.html
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <meta name="generator" content="HTML Tidy for Linux/x86 (vers 1st October 2002), see www.w3.org"> <title>C++ Multimaps</title> </head> <body bgcolor="#ffffff"> <table width="100%" bgcolor="#eeeeff"> <tr> <td><a href="index.html">cppreference.com</a> -> C++ Multimaps</td> </tr> </table> <h3>C++ MultiMaps</h3> <p>C++ Multimaps are like <a href="cppmap.html">maps</a>, but they allow duplicate keys.</p> <table> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#begin">begin()</a></td> <td>returns an iterator to the first element</td> </tr> <tr> <td><a href="cppmultimap_details.html#clear">clear()</a></td> <td>removes all elements</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#count">count()</a></td> <td>number of times an element occurs</td> </tr> <tr> <td><a href="cppmultimap_details.html#empty">empty()</a></td> <td>true if the multimap is empty</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#end">end()</a></td> <td>returns an iterator to the last element</td> </tr> <tr> <td><a href="cppmultimap_details.html#equal_range">equal_range()</a></td> <td>returns iterators to first and last occurances of elements</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#erase">erase()</a></td> <td>removes elements</td> </tr> <tr> <td><a href="cppmultimap_details.html#find">find()</a></td> <td>returns an iterator to an element</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#get_allocator">get_allocator()</a></td> <td>returns the multimap's allocator</td> </tr> <tr> <td><a href="cppmultimap_details.html#insert">insert()</a></td> <td>inserts elements</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#key_comp">key_comp()</a></td> <td>returns the function that compares keys</td> </tr> <tr> <td><a href="cppmultimap_details.html#lower_bound">lower_bound()</a></td> <td>returns an iterator to the first element greater than or equal to a certian value</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#max_size">max_size()</a></td> <td>the maximum number of elements the multimap can hold</td> </tr> <tr> <td><a href="cppmultimap_details.html#rbegin">rbegin()</a></td> <td>returns a reverse iterator to the end of the multimap</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#rend">rend()</a></td> <td>returns a reverse iterator to the beginning of the multimap</td> </tr> <tr> <td><a href="cppmultimap_details.html#size">size()</a></td> <td>the number of elements in the multimap</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#swap">swap()</a></td> <td>swaps two multimaps</td> </tr> <tr> <td><a href="cppmultimap_details.html#upper_bound">upper_bound()</a></td> <td>returns an iterator to the first element greater than a certian value</td> </tr> <tr bgcolor="#eeeeff"> <td><a href="cppmultimap_details.html#value_comp">value_comp()</a></td> <td>returns the function that compares elements</td> </tr> </table> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -