欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c语言STL标准模板库(map)

程序员文章站 2022-07-12 17:58:24
...
#include <map>
#include <iostream>
using namespace std;

int main()
{
	map <string,float,less<string> > c;
	c.insert (make_pair("Cafe",7.75));
	c.insert (make_pair("Banana",1.72));
	c.insert (make_pair("Piza",30.69));
	c["Wine"]=15.66;
	map <string,float> :: iterator pos;
	for(pos = c.begin(); pos!=c.end(); pos++)
		cout<<pos->first<<" "<<pos->second<<endl;
	c.clear();
	return 0;
}  

 

相关标签: c STL map

上一篇: STL 算法

下一篇: 第八章