| [ Web Proxy ] |
| Viewing: https://riptutorial.com/cplusplus/example/31635/some-basic-functions | [Back] [Original] |
[logo rip]
unordered_map<data_type, data_type> variable_name; //declaration
variable_name[key_value] = mapped_value; //inserting values
variable_name.find(key_value); //returns iterator to the key value
variable_name.begin(); // iterator to the first element
variable_name.end(); // iterator to the last + 1 element
| Web Proxy Viewer | New URL | Original Page |