The neusporiadaná mapa je priradený kontajner, ktorý obsahuje prvky vytvorené spojením namapovanej hodnoty s hodnotou kľúča. Prvok je identifikovaný špecificky jeho kľúčová hodnota , a mapovaná hodnota je obsah súvisiaci s kľúčom. Kľúče a hodnoty môžu byť ľubovoľné stanovené alebo užívateľsky definovaný typ . Neusporiadanú mapu si možno predstaviť ako dátovú štruktúru typu slovníka, ktorá ukladá prvky v sebe. Postupné páry, ktoré obsahuje (kľúč, hodnota) umožňujú rýchle vyhľadanie konkrétneho prvku pomocou jeho individuálneho kľúča.
Kľúč dodávaný k mape je hashované do indexov hašovacej tabuľky, čo je dôvod, prečo rýchlosť dátovej štruktúry silne závisí od hašovacej funkcie, ale v priemere náklady na hľadať, vkladať a mazať z hašovacej tabuľky je o(1).
V najhoršom prípade, najmä pre veľké prvočísla, jeho časová zložitosť sa môže pohybovať od o (1) do o (n) . V tomto prípade sa dôrazne odporúča použiť mapu, aby ste sa vyhli prijímaniu tle (prekročený časový limit) problém.
Syntax:
Unordered_mapumap
Príklad:
//A c++ program to check an unordered map in it. #include #include using namespace std; int main() { unordered_mapumap; umap['javatpoint'] = 20; umap['regular'] = 30; umap['distribute'] = 40; for (auto y :umap) cout<<y.first<< ' << y.second<<endl; } < pre> <p> <strong>Output</strong> </p> <pre> Distribute 40 Regular 30 Javatpoint 20 </pre> <p> <strong>Explanation:</strong> </p> <p>This output specifically justifies the fact that the <strong> <em>unordered map's</em> </strong> output value is generated in a random <strong> <em>key-to-value</em> </strong> manner while the map shows value and key in an ordered fashion.</p> <h2>Unordered set vs Unordered map</h2> <p>Some differences between Unordered set and Unordered map are as follows:</p> <h3>Unordered map</h3> <ul> <li>Only <strong> <em>(key-value)</em> </strong> pairs are found in the elements of an <strong> <em>unordered map</em> </strong> .</li> <li>Use the operator <strong>'[]'</strong> to extract a key's corresponding value from a map.</li> </ul> <h3>Unordered set</h3> <ul> <tr><td> <em>Key-value</em> </td> pairs are mostly utilised to determine whether a set is present or absent and are not always present in an unordered set. <li>Using the <strong> <em>find() function</em> </strong> , an element is searched for. Thus, there is no need for an operator.</li> </tr></ul> <p> <strong>Important point:</strong> </p> <p>For instance, take the issue of counting the frequency of individual words. Since, counts cannot be stored in <strong> <em>unordered set (or set),</em> </strong> we must instead use unordered map.</p> <h2>Map vs. Unordered map</h2> <p>Some differences between the Map and Unordered map are as follows:</p> <h3>Unordered map</h3> <ul> <li>Any order may be used to store the unordered map key.</li> <li>The implementation of unordered map results in an uneven tree structure, making it impossible to retain the order of the entries.</li> <li>Operations on an unordered map typically have an <strong> <em>o(1) time complexity</em> </strong> .</li> </ul> <h3>Map</h3> <ul> <li>The map is an ordered list of distinct keys.</li> <li>It is possible to preserve the elements' order (by specific tree traversal) because map uses a balanced tree structure.</li> <li>The map operations have an <strong> <em>o time complexity (log n)</em> </strong> .</li> </ul> <h2>Procedures for unordered map</h2> <p>There are numerous functions that can be used with unordered map. The ones who are most helpful are:</p> <ul> <li>Operator =</li> <li>Operator[]</li> <li>Beginning and ending of the iterator</li> <li>Empty</li> <li>Size of the capacity</li> <li>For a lookup, locate and count.</li> <li>Insert and delete</li> </ul> <p>The full list of an unordered map's methods is shown below:</p> <p> <strong>At():</strong> </p> <p>This c++ unordered map method <strong> <em>returns</em> </strong> a reference to the value with the specified element as the <strong> <em>key k</em> </strong> .</p> <p> <strong>Begin():</strong> </p> <p>It provides a return value that is an <strong> <em>iterator pointing</em> </strong> to the first entry in the unordered map container.</p> <p> <strong>End():</strong> </p> <p>The unordered map container bucket returns an <strong> <em>iterator pointing</em> </strong> to the location after the final element ().</p> <p> <strong>Bucket():</strong> </p> <p>It returns the bucket number in the map's bucket count where the element with <strong> <em>key k</em> </strong> is placed.</p> <p> <strong>Bucket_count()</strong> </p> <p>The unordered map's total number of buckets is <strong> <em>tallied</em> </strong> using the bucket count function. It can be called without passing any parameters.</p> <p> <strong>Bucket size</strong> </p> <p>It gives the unordered map count's element count for each <strong> <em>bucket ()</em> .</strong> </p> <p> <strong>Count()</strong> </p> <p>It gives the unordered map count's element count for each <strong> <em>bucket ()</em> </strong> the number of elements in an unordered map with the specified key equal range should be counted.</p> <p> <strong>Equal_eange()</strong> </p> <p>It returns the boundaries of a range with all the container's items and a key that compares to <strong> <em>k</em> </strong> .</p> <p> <strong>Find()</strong> </p> <p>Gives an iterator to the element's empty.</p> <p> <strong>Position ()</strong> </p> <p>It determines whether the unordered map container's container is empty.</p> <p> <strong>Erase()</strong> </p> <p>Elements in the unordered map container can be deleted using the <strong> <em>erase()</em> </strong> function.</p> <p>Although the functions to view the internal bucket size, bucket count, used hash function, and various hash policies are also provided by the <strong> <em>c++11 library</em> </strong> , they are less helpful in practical applications. Using iterator, we may loop through every element in the unordered map.</p> <h3>Example:</h3> <pre> #include #include using namespace std; int main() { // when we will declare a umap it must be of type and here the key will be of string type and the mapped value of double in nature unordered_mapumap = { //in this we will insert the element in map directly {'one', 1}, {'two', 2}, {'three', 3} }; // here wi will insert the values by the help of the [] operator umap['the value of pi'] = 3.14; umap['the value of root2'] = 1.414; umap['the value ofroot3'] = 1.732; umap['the value oflog10'] = 2.302; umap['the value ofloge'] = 1.0; // inserting value by insert function umap.insert(make_pair('e', 2.718)); string key = 'the value of pi'; // if key not found in map iterator // to end is returned if (umap.find(key) == umap.end()) cout<< key <<' cannot retrieved '; if key found then iterator to that is returned else cout<< 'retrieved '<< << ' '; ; (umap.find(key)="=" umap.end()) <<' retrieved '; 'found <<endl; now we will iterate over all value of umap unordered_map::iterator itr; ' the entire elements : '; for (itr="umap.begin();" itr !="umap.end();" itr++) { cout<first ' <second } return 0; < pre> <p> <strong>Output</strong> </p> <pre> Retrieved the value of pi Lambda value cannot retrieved The entire elements : E 2.718 The value ofloge 1 The value oflog10 2.302 The value of root2 1.414 The value ofroot3 1.732 The value of pi 3.14 Two 2 Three 3 One 1 </pre> <h3>Example:</h3> <pre> // It is a c++ program to find rhefreqency of it ,in this we will use of unordered_map of every word #include using namespace std; void printfrequencies(const string &str) { unordered_mapwordfreq; stringstream ss(str); string word; while (ss>> word) wordfreq[word]++; unordered_map:: iterator q; for (q = wordfreq.begin(); q != wordfreq.end(); q++) cout<< '(' <first << ', ' <second ') '; } int main() { string str="java t points questions " 'learn programs'; printfrequencies(str); return 0; < pre> <p> <strong>Output</strong> </p> <pre> (programs, 1) (learn, 1) (questions, 1) (t, 1) (points, 1) (java, 1) </pre> <hr></first></pre></'></pre></y.first<<>
Vysvetlenie:
Tento výstup konkrétne odôvodňuje skutočnosť, že neusporiadané mapy výstupná hodnota je generovaná náhodne kľúč-hodnota kým mapa zobrazuje hodnotu a kľúč usporiadaným spôsobom.
Neusporiadaná sada vs Neusporiadaná mapa
Niektoré rozdiely medzi Neusporiadanou sadou a Neusporiadanou mapou sú nasledovné:
Neusporiadaná mapa
- Iba (pár kľúč – hodnota) dvojice sa nachádzajú v prvkoch an neusporiadaná mapa .
- Použite operátora „[]“ extrahovať zodpovedajúcu hodnotu kľúča z mapy.
Neobjednaný set
- Pomocou funkcia find(). , vyhľadá sa prvok. Nie je teda potrebný operátor.
Dôležitý bod:
Zoberme si napríklad otázku počítania frekvencie jednotlivých slov. Keďže počty nie je možné uložiť do neusporiadaná súprava (alebo súprava), namiesto toho musíme použiť neusporiadanú mapu.
Mapa vs. Neusporiadaná mapa
Niektoré rozdiely medzi mapou a neusporiadanou mapou sú nasledovné:
Neusporiadaná mapa
- Na uloženie neusporiadaného kľúča mapy možno použiť akúkoľvek objednávku.
- Implementácia neusporiadanej mapy má za následok nerovnomernú stromovú štruktúru, ktorá znemožňuje zachovať poradie záznamov.
- Operácie na neusporiadanej mape majú zvyčajne znak o (1) časová zložitosť .
Mapa
- Mapa je usporiadaný zoznam rôznych kľúčov.
- Je možné zachovať poradie prvkov (konkrétnym prechodom cez strom), pretože mapa používa vyváženú stromovú štruktúru.
- Mapové operácie majú o časová zložitosť (log n) .
Postupy pre neusporiadanú mapu
Existuje množstvo funkcií, ktoré možno použiť s neusporiadanou mapou. Tí, ktorí sú najviac nápomocní, sú:
- Operátor =
- operátor[]
- Začiatok a koniec iterátora
- Prázdny
- Veľkosť kapacity
- Pre vyhľadanie, nájdite a spočítajte.
- Vložiť a odstrániť
Úplný zoznam metód neusporiadanej mapy je uvedený nižšie:
At():
Táto metóda neusporiadanej mapy v c++ sa vracia odkaz na hodnotu so zadaným prvkom ako kľúč k .
čo je zásobník v jave
Začať():
Poskytuje návratovú hodnotu, ktorá je an ukazovanie iterátora k prvému záznamu v kontajneri neusporiadanej mapy.
Koniec():
Neusporiadaný kontajner mapového kontajnera vráti an ukazovanie iterátora na miesto za posledným prvkom ().
Vedro():
Vráti číslo segmentu v počte segmentov mapy tam, kde je prvok kľúč k je umiestnený.
Bucket_count()
tring to int
Celkový počet vedier na neusporiadanej mape je spočítané pomocou funkcie bucket count. Dá sa volať bez zadania akýchkoľvek parametrov.
Veľkosť vedra
Udáva počet prvkov neusporiadaného počtu na mape pre každý z nich vedro () .
Počet ()
Udáva počet prvkov neusporiadaného počtu na mape pre každý z nich vedro () mal by sa počítať počet prvkov v neusporiadanej mape so zadaným kľúčom v rovnakom rozsahu.
rovnaký_rozsah()
Vráti hranice rozsahu so všetkými položkami kontajnera a kľúčom, ktorý je porovnateľný k .
Nájsť()
Dáva iterátor prázdnemu prvku.
pozícia ()
Určuje, či je kontajner neusporiadaného mapového kontajnera prázdny.
Vymazať()
Prvky v neusporiadanom mapovom kontajneri je možné vymazať pomocou vymazať() funkciu.
Hoci funkcie na zobrazenie veľkosti interného segmentu, počtu segmentov, použitej hašovacej funkcie a rôznych hašovacích zásad poskytuje aj knižnica c++11 , sú menej užitočné v praktických aplikáciách. Pomocou iterátora môžeme prechádzať každým prvkom v neusporiadanej mape.
Príklad:
#include #include using namespace std; int main() { // when we will declare a umap it must be of type and here the key will be of string type and the mapped value of double in nature unordered_mapumap = { //in this we will insert the element in map directly {'one', 1}, {'two', 2}, {'three', 3} }; // here wi will insert the values by the help of the [] operator umap['the value of pi'] = 3.14; umap['the value of root2'] = 1.414; umap['the value ofroot3'] = 1.732; umap['the value oflog10'] = 2.302; umap['the value ofloge'] = 1.0; // inserting value by insert function umap.insert(make_pair('e', 2.718)); string key = 'the value of pi'; // if key not found in map iterator // to end is returned if (umap.find(key) == umap.end()) cout<< key <<\' cannot retrieved \'; if key found then iterator to that is returned else cout<< \'retrieved \'<< << \' \'; ; (umap.find(key)="=" umap.end()) <<\' retrieved \'; \'found <<endl; now we will iterate over all value of umap unordered_map::iterator itr; \' the entire elements : \'; for (itr="umap.begin();" itr !="umap.end();" itr++) { cout<first \' <second } return 0; < pre> <p> <strong>Output</strong> </p> <pre> Retrieved the value of pi Lambda value cannot retrieved The entire elements : E 2.718 The value ofloge 1 The value oflog10 2.302 The value of root2 1.414 The value ofroot3 1.732 The value of pi 3.14 Two 2 Three 3 One 1 </pre> <h3>Example:</h3> <pre> // It is a c++ program to find rhefreqency of it ,in this we will use of unordered_map of every word #include using namespace std; void printfrequencies(const string &str) { unordered_mapwordfreq; stringstream ss(str); string word; while (ss>> word) wordfreq[word]++; unordered_map:: iterator q; for (q = wordfreq.begin(); q != wordfreq.end(); q++) cout<< '(' <first << \', \' <second \') \'; } int main() { string str="java t points questions " \'learn programs\'; printfrequencies(str); return 0; < pre> <p> <strong>Output</strong> </p> <pre> (programs, 1) (learn, 1) (questions, 1) (t, 1) (points, 1) (java, 1) </pre> <hr></first></pre></\'>
Príklad:
// It is a c++ program to find rhefreqency of it ,in this we will use of unordered_map of every word #include using namespace std; void printfrequencies(const string &str) { unordered_mapwordfreq; stringstream ss(str); string word; while (ss>> word) wordfreq[word]++; unordered_map:: iterator q; for (q = wordfreq.begin(); q != wordfreq.end(); q++) cout<< '(' <first << \', \' <second \') \'; } int main() { string str="java t points questions " \'learn programs\'; printfrequencies(str); return 0; < pre> <p> <strong>Output</strong> </p> <pre> (programs, 1) (learn, 1) (questions, 1) (t, 1) (points, 1) (java, 1) </pre> <hr></first>
\'>