码迷,mamicode.com
首页 > 编程语言 > 详细

STL map 按key值和按value值排序

时间:2015-08-20 13:18:26      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:

map是用来存放<key, value>键值对的数据结构,可以很方便快速的根据key查到相应的value。假如存储水果和其单价,我们用map来进行存储就是个不错的选择。 我们这样定义,map<string, double>,其中水果用string类型,作为Key;该水果的单价用double类型,作为value。这样一来,我们可以根据水果名快速的查找到价格。

        我们不仅要将水果和对应的价格输出,还想知道按照价格高低进行排序的结果。换句话说,我们希望能够对map进行按Key排序或按Value排序,然后按序输出其键值对的内容。

一、C++ STL中Map的按Key排序

 其实,为了实现快速查找,map内部本身就是按序存储的(比如红黑树)。在我们插入<key, value>键值对时,就会按照key的大小顺序进行存储。这也是作为key的类型必须能够进行<运算比较的原因。现在我们用string类型作为key,因此,我们的存储就是按水果名的字典排序储存的。
参考代码:
<pre name="code" class="cpp">#include<iostream>
#include<utility>//<utility>中定义了模板函数make_pair
#include<string>
#include<map>
#include<iterator>
using namespace std;
void  main()
{
	pair<string,double> fruit1("orange",4.5);//初始化
	pair<string,double> fruit2;
	pair<string,double> fruit3;

	//结构体初始化
	fruit2.first="banana";
	fruit2.second=3.25;
    
	//使用模板函数给pair结构体赋值
	fruit3=make_pair("apple",5.2);
	cout<<"pair:"<<endl;
	cout<<"The price of "<<fruit1.first<<" is $"<<fruit1.second<<endl;
	cout<<"The price of "<<fruit2.first<<" is $"<<fruit2.second<<endl;
	cout<<"The price of "<<fruit3.first<<" is $"<<fruit3.second<<endl;

	cout<<endl<<"map:sorted by key(less)"<<endl;
	map<string,double> mapA;
	mapA.insert(fruit1);
	mapA.insert(fruit2);
	mapA.insert(fruit3);
	for(map<string,double>::iterator iter=mapA.begin();iter!=mapA.end();iter++)
	{
		cout<<"The price of "<<iter->first<<" is $"<<iter->second<<endl;
	}
}


运行结果:
技术分享
pair输出是按照正常生成pair的顺序,map迭代器输出就是经过排序之后的,默认的是key按照字典排序升序排序。
如果要按照key降序排列呢?
map是stl里面的一个模板类,现在我们来看下map的定义:
template < class Key, class T, class Compare = less<Key>,  
           class Allocator = allocator<pair<const Key,T> > > class map;
它有四个参数,其中我们比较熟悉的有两个: Key 和 Value。第四个是 Allocator,用来定义存储分配模型的,此处我们不作介绍。

现在我们重点看下第三个参数: class Compare = less<Key> 

这也是一个class类型的,而且提供了默认值 less<Key>。 less是stl里面的一个函数对象,那么什么是函数对象呢?

所谓的函数对象:即调用操作符的类,其对象常称为函数对象(function object),它们是行为类似函数的对象。表现出一个函数的特征,就是通过“对象名+(参数列表)”的方式使用一个 类,其实质是对operator()操作符的重载,也就是控制map按key值排序的升降序的。

现在我们来看一下less的实现:


template <class T> struct less : binary_function <T,T,bool> { bool operator() (const T& x, const T& y) const {return x<y;} };
它是一个带模板的struct,里面仅仅对()运算符进行了重载,实现很简单,但用起来很方便,这就是函数对象的优点所在。stl中还为四则运算等常见运算定义了这样的函数对象,与less相对的还有greater:
template <class T> struct greater : binary_function <T,T,bool> {  
  bool operator() (const T& x, const T& y) const  
    {return x>y;}  
};  
map这里指定less作为其默认比较函数(对象),所以我们通常如果不自己指定Compare,map中键值对就会按照Key的less顺序进行组织存储,因此我们就看到了上面代码输出结果是按照学生姓名的字典顺序输出的,即string的less序列。

我们可以在定义map的时候,指定它的第三个参数Compare,比如我们把默认的less指定为greater:

map<string,double,greater<string>> mapB;
	mapB.insert(fruit1);
	mapB.insert(fruit2);
	mapB.insert(fruit3);
	cout<<endl<<"map:sorted by key(greater)"<<endl;
	for(map<string,double,greater<string>>::iterator iter1=mapB.begin();iter1!=mapB.end();iter1++)
	{
		cout<<"The price of "<<iter1->first<<" is $"<<iter1->second<<endl;
	}
输出结果为:

技术分享

降序排列。

现在知道如何为map指定Compare类了,如果我们想自己写一个compare的类,让map按照我们想要的顺序来存储,比如,按照水果名的长短排序进行存储,那该怎么做呢?

其实很简单,只要我们自己写一个函数对象,实现想要的逻辑,定义map的时候把Compare指定为我们自己编写的这个就ok啦。


技术分享


二、C++ STL中Map的按Value排序


在第一部分中,我们借助map提供的参数接口,为它指定相应Compare类,就可以实现对map按Key排序,是在创建map并不断的向其中添加元素的过程中就会完成排序。

现在我们想要从map中得到水果价格的从低到高的次序输出,该如何实现呢?换句话说,该如何实现Map的按Value排序呢?

        第一反应是利用stl中提供的sort算法实现,这个想法是好的,不幸的是,sort算法有个限制,利用sort算法只能对序列容器进行排序,就是线性的(如vector,list,deque)。map也是一个集合容器,它里面存储的元素是pair,但是它不是线性存储的(前面提过,像红黑树),所以利用sort不能直接和map结合进行排序。

       虽然不能直接用sort对map进行排序,那么我们可不可以迂回一下,把map中的元素放到序列容器(如vector)中,然后再对这些元素进行排序呢?这个想法看似是可行的。要对序列容器中的元素进行排序,也有个必要条件:就是容器中的元素必须是可比较的,也就是实现了<操作的。那么我们现在就来看下map中的元素满足这个条件么?

       我们知道map中的元素类型为pair,具体定义如下:

template <class T1, class T2> struct pair  
{  
  typedef T1 first_type;  
  typedef T2 second_type;  
  
  T1 first;  
  T2 second;  
  pair() : first(T1()), second(T2()) {}  
  pair(const T1& x, const T2& y) : first(x), second(y) {}  
  template <class U, class V>  
    pair (const pair<U,V> &p) : first(p.first), second(p.second) { }  
}  
pair也是一个模板类,这样就实现了良好的通用性。它仅有两个数据成员first 和 second,即 key 和 value,而且

<utility>头文件中,还为pair重载了 < 运算符, 具体实现如下: 

template<class _T1, class _T2>  
  inline bool  
  operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)  
  { return __x.first < __y.first  
           || (!(__y.first < __x.first) && __x.second < __y.second); }  


重点看下其实现:
__x.first < __y.first || (!(__y.first < __x.first) && __x.second < __y.second)  


这个less在两种情况下返回true,第一种情况:__x.first < __y.first  这个好理解,就是比较key,如果__x的key 小于 __y的key 则返回true。

第二种情况有点费解:  !(__y.first < __x.first) && __x.second < __y.second

当然由于||运算具有短路作用,即当前面的条件不满足是,才进行第二种情况的判断 。第一种情况__x.first < __y.first 不成立,即__x.first >= __y.first 成立,在这个条件下,我们来分析下  !(__y.first < __x.first)  && __x.second < __y.second

 !(__y.first < __x.first) ,看清出,这里是y的key不小于x的key ,结合前提条件,__x.first < __y.first 不成立,即x的key不小于y的key 

即:  !(__y.first < __x.first)  &&   !(__x.first < __y.first )   等价于   __x.first == __y.first ,也就是说,第二种情况是在key相等的情况下,比较两者的value(second)。

这里比较令人费解的地方就是,为什么不直接写 __x.first == __y.first 呢? 这么写看似费解,但其实也不无道理:前面讲过,作为map的key必须实现<操作符的重载,但是并不保证==符也被重载了,如果key没有提供==,那么 ,__x.first == __y.first 这样写就错了。由此可见,stl中的代码是相当严谨的,值得我们好好研读。

 现在我们知道了pair类重载了<符,但是它并不是按照value进行比较的,而是先对key进行比较,key相等时候才对value进行比较。显然不能满足我们按value进行排序的要求。

而且,既然pair已经重载了<符,而且我们不能修改其实现,又不能在外部重复实现重载<符。

typedef pair<string, int> PAIR;  
bool operator< (const PAIR& lhs, const PAIR& rhs) {  
    return lhs.second < rhs.second;  
}  

如果pair类本身没有重载<符,那么我们按照上面的代码重载<符,是可以实现对pair的按value比较的。现在这样做不行了,甚至会出错(编译器不同,严格的就报错)。

那么我们如何实现对pair按value进行比较呢? 第一种:是最原始的方法,写一个比较函数;  第二种:刚才用到了,写一个函数对象。这两种方式实现起来都比较简单。

typedef pair<string, int> PAIR;  
  
bool cmp_by_value(const PAIR& lhs, const PAIR& rhs) {  
  return lhs.second < rhs.second;  
}  
  
struct CmpByValue {  
  bool operator()(const PAIR& lhs, const PAIR& rhs) {  
    return lhs.second < rhs.second;  
  }  
};  


接下来,我们看下sort算法,是不是也像map一样,可以让我们自己指定元素间如何进行比较呢?
template <class RandomAccessIterator>  
  void sort ( RandomAccessIterator first, RandomAccessIterator last );  
  
template <class RandomAccessIterator, class Compare>  
  void sort ( RandomAccessIterator first, RandomAccessIterator last, Compare comp ); 

  1. 我们看到,令人兴奋的是,sort算法和map一样,也可以让我们指定元素间如何进行比较,即指定Compare。需要注意的是,map是在定义时指定的,所以传参的时候直接传入函数对象的类名,就像指定key和value时指定的类型名一样;sort算法是在调用时指定的,需要传入一个对象,当然这个也简单,类名()就会调用构造函数生成对象。
#include<iostream>
#include<utility>//<utility>中定义了模板函数make_pair
#include<string>
#include<map>
#include<iterator>
#include<vector>
#include<algorithm>
using namespace std;

typedef pair<string, double> PAIR;  
bool cmp_by_value_less(const PAIR& l,const PAIR& r)
{
	return l.second<r.second;
}

bool cmp_by_value_greater(const PAIR& l,const PAIR& r)
{
	return l.second>r.second;
}
struct CmpByKeyLength {  
  bool operator()(const string& k1, const string& k2) {  
    return k1.length() < k2.length();  
  }  
};  
void  main()
{
	pair<string,double> fruit1("orange",4.5);//初始化
	pair<string,double> fruit2;
	pair<string,double> fruit3;

	//结构体初始化
	fruit2.first="bananas";
	fruit2.second=3.25;
    
	//使用模板函数给pair结构体赋值
	fruit3=make_pair("apple",5.2);
	/*cout<<"pair:"<<endl;
	cout<<"The price of "<<fruit1.first<<" is $"<<fruit1.second<<endl;
	cout<<"The price of "<<fruit2.first<<" is $"<<fruit2.second<<endl;
	cout<<"The price of "<<fruit3.first<<" is $"<<fruit3.second<<endl;*/

	cout<<endl<<"map:sorted by key(less)"<<endl;
	map<string,double> mapA;
	mapA.insert(fruit1);
	mapA.insert(fruit2);
	mapA.insert(fruit3);
	for(map<string,double>::iterator iter=mapA.begin();iter!=mapA.end();iter++)
	{
		cout<<"The price of "<<iter->first<<" is $"<<iter->second<<endl;
	}

	vector<PAIR> vec(mapA.begin(),mapA.end());
	sort(vec.begin(),vec.end(),cmp_by_value_less);
	cout<<endl<<"map:sorted by value(less)"<<endl;
	for(int i=0;i<vec.size();i++)
	{
		cout<<"The price of "<<vec[i].first<<" is $"<<vec[i].second<<endl;
	}

	sort(vec.begin(),vec.end(),cmp_by_value_greater);
	cout<<endl<<"map:sorted by value(greater)"<<endl;
	for(int i=0;i<vec.size();i++)
	{
		cout<<"The price of "<<vec[i].first<<" is $"<<vec[i].second<<endl;
	}

}
按照value值运行结果如下:
技术分享

pair定义和map按照key值升降序以及按照value值升降序的完整代码如下:
#include<iostream>
#include<utility>//<utility>中定义了模板函数make_pair
#include<string>
#include<map>
#include<iterator>
#include<vector>
#include<algorithm>
using namespace std;

typedef pair<string, double> PAIR;  
bool cmp_by_value_less(const PAIR& l,const PAIR& r)
{
	return l.second<r.second;
}

bool cmp_by_value_greater(const PAIR& l,const PAIR& r)
{
	return l.second>r.second;
}
struct CmpByKeyLength {  
  bool operator()(const string& k1, const string& k2) {  
    return k1.length() < k2.length();  
  }  
};  
void  main()
{
	pair<string,double> fruit1("orange",4.5);//初始化
	pair<string,double> fruit2;
	pair<string,double> fruit3;

	//结构体初始化
	fruit2.first="bananas";
	fruit2.second=3.25;
    
	//使用模板函数给pair结构体赋值
	fruit3=make_pair("apple",5.2);
	cout<<"pair:"<<endl;
	cout<<"The price of "<<fruit1.first<<" is $"<<fruit1.second<<endl;
	cout<<"The price of "<<fruit2.first<<" is $"<<fruit2.second<<endl;
	cout<<"The price of "<<fruit3.first<<" is $"<<fruit3.second<<endl;

	cout<<endl<<"map:sorted by key(less)"<<endl;
	map<string,double> mapA;
	mapA.insert(fruit1);
	mapA.insert(fruit2);
	mapA.insert(fruit3);
	for(map<string,double>::iterator iter=mapA.begin();iter!=mapA.end();iter++)
	{
		cout<<"The price of "<<iter->first<<" is $"<<iter->second<<endl;
	}

	map<string,double,greater<string>> mapB;
	mapB.insert(fruit1);
	mapB.insert(fruit2);
	mapB.insert(fruit3);
	cout<<endl<<"map:sorted by key(greater)"<<endl;
	for(map<string,double,greater<string>>::iterator iter1=mapB.begin();iter1!=mapB.end();iter1++)
	{
		cout<<"The price of "<<iter1->first<<" is $"<<iter1->second<<endl;
	}

	map<string,double, CmpByKeyLength > mapC;
	mapC.insert(fruit1);
	mapC.insert(fruit2);
	mapC.insert(fruit3);
	cout<<endl<<"map:sorted by length"<<endl;
	for(map<string,double, CmpByKeyLength >::iterator iter2=mapC.begin();iter2!=mapC.end();iter2++)
	{
		cout<<"The price of "<<iter2->first<<" is $"<<iter2->second<<endl;
	}

	vector<PAIR> vec(mapA.begin(),mapA.end());
	sort(vec.begin(),vec.end(),cmp_by_value_less);
	cout<<endl<<"map:sorted by value(less)"<<endl;
	for(int i=0;i<vec.size();i++)
	{
		cout<<"The price of "<<vec[i].first<<" is $"<<vec[i].second<<endl;
	}

	sort(vec.begin(),vec.end(),cmp_by_value_greater);
	cout<<endl<<"map:sorted by value(greater)"<<endl;
	for(int i=0;i<vec.size();i++)
	{
		cout<<"The price of "<<vec[i].first<<" is $"<<vec[i].second<<endl;
	}

}



执行结果如下:
技术分享


版权声明:本文为博主原创文章,未经博主允许不得转载。

STL map 按key值和按value值排序

标签:

原文地址:http://blog.csdn.net/sinat_24520925/article/details/47803731

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!