C++ Map容器通过value找key

//通过value找 key
	for(std::map::iterator it = aMap.begin();it!=aMap.end();it++) 
	{
		if(it->second==value)
			cout<<"通过value:  "<first<
//通过key找value 
	if(aMap.count(key)>0)
	{
    	cout<<"通过key:  "<

你可能感兴趣的:(C++)