STL概要
1403 ワード
STLはStandard Template Libraryの略称で、中国語名標準テンプレートライブラリです.Libraryには次のものがあります. A pair class(pairs of anything, int/int, int/char,etc) Containers Vector(expandable array) Deque(expandable array, expandable at both ends) List(double-linked) Sets and Maps
Basic Algorithms(sort,search,etc)STLはstdの名前ネーミングスペース(namespace)に含まれている.
#include
#include
using namespace std;
int main()
{
vector<int> x;
for(int i=0;i<1000;i++)
x.push_back(i);
vector<int>::iterator p;
for(p=x.begin();pcout<" ";
return 0;
}