The Daily C++
@dailycpp
1.83K
subscribers
10
photos
2
files
596
links
The best channel about C++ News!
Every day a lot of news!
Send your project/repo/guide/tutorial to
@dailycppbot
Download Telegram
Join
The Daily C++
1.83K subscribers
The Daily C++
Tags:
#sets
#ordered
#unordered
http://cppisland.com/?p=457
C++ Island
Ordered Vs. Unordered
Sets
In mathematics, a
set
has no order. The
sets
{1,2,3} and {3,2,1} are equivalent. STL’s std::
set
diverges from the mathematical definition and imposes an order on its elements. Typically the se…