Content deleted Content added
Jerryobject (talk | contribs) WP:LINKs: updates, fix-cut needless WP:NOPIPEs, WP:OVERLINKs. Full terms define before WP:ABBReviations. Small WP:EoS WP:COPYEDITs. |
m typo |
||
Line 1:
{{C++ Standard Library}}
In the programming language [[C++]], '''unordered associative containers''' are a group of class templates in the [[C++ Standard Library]] that implement [[hash table]]
The unordered associative containers are similar to the [[associative containers]] in the C++ Standard Library but have different constraints. As their name implies, the elements in the unordered associative containers are not [[well ordering|ordered]]. This is due to the use of hashing to store objects. The containers can still be [[iterator|iterated]] through like a regular associative container.
|