cppのvectorの使い方
概要
- std
sort
,reverse
は<algorithm>
に内包されている
具体例
初期化
vector<int> a{1, 2, 3, 4, 5};
vector<int> b(100, 0); // 100の長さで、0で初期化
反転
vector<int> a{1,2,3};
reverse(a.begin(), a.end());
ソート
vector<int> a{3,2,1};
sort(a.begin(), a.end());