C++ 标准模板库STL

STL是标准C++库的一部分。

STL模板类为C++提供了完善的数据结构和算法。


STL的特点

“类型参数化”,即STL的代码中可处理任意自定义类型的对象。

泛型编程(Generic Programming),它以模板为基础,弱化了

实体类型的差异,简化了编程时问题抽象的模型,提供了更好的

封装性和弹性。

//STL示例
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

int main()
{
	vector<int> num;//STL的vector容器
	int a, i;
	while(cin>>a)
		num.push_back(a);
	sort(num.begin(),num.end());
	for(i=0;i<num.size();i++)
		cout<<num[i]<<" ";
	cout<<endl;
	return 0; 
}





C++ 标准模板库STL,布布扣,bubuko.com

C++ 标准模板库STL

上一篇:Python with用法


下一篇:[Flutter-21] ListView & Json