1 #include <iostream> 2 #include <set> 3 4 using namespace std; 5 6 int main() 7 { 8 set<int> s; 9 s.insert(2); 10 s.insert(1); 11 s.insert(3); 12 13 cout<<*s.begin()<<endl; 14 15 return 0; 16 }
輸出為1
在使用OpenCV開發程序時,如果想查看矩陣數據,比較
最近一直在做沙箱項目,在項目快接近結尾的
回文序列檢測,Manacher算法詳解, 算法簡介:算法的
Chromium中多線程及並發技術要點(C/C++)
定義:組合模式將對象組合成樹形結構以表示“部分—整體”
C++語言之析構函數與構造函數解析 #include