【转】c++中Vector等STL容器的自定义排序
如果要自己定义STL容器的元素类最好满足STL容器对元素的要求
必须要求:
1、Copy构造函数
2、赋值=操作符
3、能够销毁对象的析构函数
另外:
1、可用的缺省构造函数,序列型容器必须,用于初始化元素
2、==操作符定义,用于判断相等
3、<操作符定义,关联型容器必须,用于缺省排序
你可在struct內加入 operator < ,就可以使struct有排序能力.
因為而你的pcd struct內沒有指針,所以不須要有copy constructor
和copy assignment, 編譯器會為你提供的, 你不須要自己做的.
當你要排序時只要寫 sort( obj.begin(), obj.end() )就可.
以上内容取自帖子:http://bbs.csdn.net/topics/40228627
另一篇参考地址:http://blog.csdn.net/tigernana/article/details/7293758
以下取自帖子:http://blog.csdn.net/guang11cheng/article/details/7556697
三种方式实现vector的自定义排序
方法1:重载运算符
#include <vector>
#include <algorithm>
#include <functional> using namespace std;
struct TItem
{
int m_i32Type;
int m_i32ID; bool operator <(const TItem& rhs) const // 升序排序时必须写的函数
{
return m_i32Type < rhs.m_i32Type;
}
bool operator >(const TItem& rhs) const // 降序排序时必须写的函数
{
return m_i32Type > rhs.m_i32Type;
}
};
int main()
{
vector<TItem> stItemVec; TItem stItem1;
stItem1.m_i32Type = 1;
stItem1.m_i32ID = 1; TItem stItem2;
stItem2.m_i32Type = 2;
stItem2.m_i32ID = 2; TItem stItem3;
stItem3.m_i32Type = 3;
stItem3.m_i32ID = 3; TItem stItem4;
stItem4.m_i32Type = 2;
stItem4.m_i32ID = 4; stItemVec.push_back(stItem1);
stItemVec.push_back(stItem2);
stItemVec.push_back(stItem3);
stItemVec.push_back(stItem4); // 升序排序
sort(stItemVec.begin(), stItemVec.end(), less<TItem>());
// 或者sort(ctn.begin(), ctn.end()); 默认情况为升序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i].m_i32Type, stItemVec[i].m_i32ID); printf("--\n"); // 降序排序
sort(stItemVec.begin(), stItemVec.end(), greater<TItem>()); for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i].m_i32Type, stItemVec[i].m_i32ID); return 0;
}
方法2:全局的比较函数
#include <vector>
#include <algorithm>
#include <functional> using namespace std; struct TItem
{
int m_i32Type;
int m_i32ID;
}; bool lessmark(const TItem& stItem1, const TItem& stItem2)
{
return stItem1.m_i32Type < stItem2.m_i32Type;
} bool greatermark(const TItem& stItem1, const TItem& stItem2)
{
return stItem1.m_i32Type > stItem2.m_i32Type;
} int main()
{
vector<TItem> stItemVec; TItem stItem1;
stItem1.m_i32Type = 1;
stItem1.m_i32ID = 1; TItem stItem2;
stItem2.m_i32Type = 2;
stItem2.m_i32ID = 2; TItem stItem3;
stItem3.m_i32Type = 3;
stItem3.m_i32ID = 3; TItem stItem4;
stItem4.m_i32Type = 2;
stItem4.m_i32ID = 4; stItemVec.push_back(stItem1);
stItemVec.push_back(stItem2);
stItemVec.push_back(stItem3);
stItemVec.push_back(stItem4); sort(stItemVec.begin(), stItemVec.end(), lessmark); //升序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i].m_i32Type, stItemVec[i].m_i32ID); printf("--\n"); sort(stItemVec.begin(), stItemVec.end(), greatermark); //降序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i].m_i32Type, stItemVec[i].m_i32ID); return 0;
}
方法3:函数对象
#include <vector>
#include <algorithm>
#include <functional> using namespace std; struct TItem
{
int m_i32Type;
int m_i32ID;
}; class CompLess
{
public:
bool operator ()(const TItem& stItem1, const TItem& stItem2)
{
return stItem1.m_i32Type < stItem2.m_i32Type;
}
}; class CompGreater
{
public:
bool operator ()(const TItem& stItem1, const TItem& stItem2)
{
return stItem1.m_i32Type > stItem2.m_i32Type;
}
}; int main()
{
vector<TItem> stItemVec; TItem stItem1;
stItem1.m_i32Type = 1;
stItem1.m_i32ID = 1; TItem stItem2;
stItem2.m_i32Type = 2;
stItem2.m_i32ID = 2; TItem stItem3;
stItem3.m_i32Type = 3;
stItem3.m_i32ID = 3; TItem stItem4;
stItem4.m_i32Type = 2;
stItem4.m_i32ID = 4; stItemVec.push_back(stItem1);
stItemVec.push_back(stItem2);
stItemVec.push_back(stItem3);
stItemVec.push_back(stItem4); sort(stItemVec.begin(), stItemVec.end(), CompLess()); //升序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i].m_i32Type, stItemVec[i].m_i32ID); printf("--\n"); sort(stItemVec.begin(), stItemVec.end(), CompGreater()); //降序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i].m_i32Type, stItemVec[i].m_i32ID); return 0;
} /*
结果如下:
type: 1, id: 1
type: 2, id: 2
type: 2, id: 4
type: 3, id: 3
--
type: 3, id: 3
type: 2, id: 2
type: 2, id: 4
type: 1, id: 1
可以看出vector的sort的稳定的。
*/
问题:
1,示例代码中只有>和<关系处理,==关系是如何推导出来的?
2,排序时要移动元素,效率怎样?
3,如果自定义结构定义在一个类的内部,使用函数对象进行排序,这个函数对象可以作为类的成员函数吗?
4,在上面的例子中,vector中存放的都是结构(对象)本身,如果存放的是结构指针,该如何排序呢?此时只能通过全局的比较函数或者函数对象来做,且比较函数的参数要是指针类型的,如下:
(1)全局的比较函数
#include <vector>
#include <algorithm>
#include <functional> using namespace std; struct TItem
{
int m_i32Type;
int m_i32ID;
}; bool CompLess(const TItem* pstItem1, const TItem* pstItem2)
{
return pstItem1->m_i32Type < pstItem2->m_i32Type;
} bool CompGreater(const TItem* pstItem1, const TItem* pstItem2)
{
return pstItem1->m_i32Type > pstItem2->m_i32Type;
} int main()
{
vector<TItem*> stItemVec; TItem stItem1;
stItem1.m_i32Type = 1;
stItem1.m_i32ID = 1; TItem stItem2;
stItem2.m_i32Type = 2;
stItem2.m_i32ID = 2; TItem stItem3;
stItem3.m_i32Type = 3;
stItem3.m_i32ID = 3; TItem stItem4;
stItem4.m_i32Type = 2;
stItem4.m_i32ID = 4; stItemVec.push_back(&stItem1);
stItemVec.push_back(&stItem2);
stItemVec.push_back(&stItem3);
stItemVec.push_back(&stItem4); sort(stItemVec.begin(), stItemVec.end(), CompLess); //升序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i]->m_i32Type, stItemVec[i]->m_i32ID); printf("--\n"); sort(stItemVec.begin(), stItemVec.end(), CompGreater); //降序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i]->m_i32Type, stItemVec[i]->m_i32ID); return 0;
}
(2)函数对象
#include <vector>
#include <algorithm>
#include <functional> using namespace std; struct TItem
{
int m_i32Type;
int m_i32ID;
}; class CompLess
{
public:
bool operator ()(const TItem* pstItem1, const TItem* pstItem2)
{
return pstItem1->m_i32Type < pstItem2->m_i32Type;
}
}; class CompGreater
{
public:
bool operator ()(const TItem* pstItem1, const TItem* pstItem2)
{
return pstItem1->m_i32Type > pstItem2->m_i32Type;
}
}; int main()
{
vector<TItem*> stItemVec; TItem stItem1;
stItem1.m_i32Type = 1;
stItem1.m_i32ID = 1; TItem stItem2;
stItem2.m_i32Type = 2;
stItem2.m_i32ID = 2; TItem stItem3;
stItem3.m_i32Type = 3;
stItem3.m_i32ID = 3; TItem stItem4;
stItem4.m_i32Type = 2;
stItem4.m_i32ID = 4; stItemVec.push_back(&stItem1);
stItemVec.push_back(&stItem2);
stItemVec.push_back(&stItem3);
stItemVec.push_back(&stItem4); sort(stItemVec.begin(), stItemVec.end(), CompLess()); //升序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i]->m_i32Type, stItemVec[i]->m_i32ID); printf("--\n"); sort(stItemVec.begin(), stItemVec.end(), CompGreater()); //降序排序 for (size_t i = 0; i < stItemVec.size(); i++)
printf("type: %d, id: %d\n", stItemVec[i]->m_i32Type, stItemVec[i]->m_i32ID); return 0;
}
【转】c++中Vector等STL容器的自定义排序的更多相关文章
- C++中vector,set,map自定义排序
一.vector排序 vector支持cmp,就类似数组,可以直接sort. #include <iostream> #include <algorithm> #include ...
- C++ STL中vector(向量容器)使用简单介绍
原文:http://www.seacha.com/article.php/knowledge/cbase/2013/0903/2205.html C++ vector(向量容器)是一个线性顺序结构.相 ...
- STL容器——对map排序
STL容器(三)——对map排序 对于map的排序问题,主要分为两部分:根据key排序:根据value排序.下面我们就分别说一下~ 1. 根据key进行排序 map默认按照key进行升序排序 ,和输入 ...
- STL容器set()--->自定义数据类型
set容器中不能插入重复的元素,需要其插入的元素有比较大小(<).相等(==) 的逻辑判断,这是因为set中的元素是有序排列, 默认从小到大排列 std::set<type,std::le ...
- C/C++知识要点2——STL中Vector、Map、Set容器的实现原理
1.Vector是顺序容器.是一个动态数组.支持随机存取.插入.删除.查找等操作,在内存中是一块连续的空间.在原有空间不够情况下自己主动分配空间.添加为原来的两倍.vector随机存取效率高,可是在v ...
- [转贴]从零开始学C++之STL(二):实现一个简单容器模板类Vec(模仿VC6.0 中 vector 的实现、vector 的容量capacity 增长问题)
首先,vector 在VC 2008 中的实现比较复杂,虽然vector 的声明跟VC6.0 是一致的,如下: C++ Code 1 2 template < class _Ty, cl ...
- C++中 vector(容器)的用法
vector(向量): C++中的一种数据结构,确切的说是一个类.它相当于一个动态的数组,当程序员无法知道自己需要的数组的规模多大时,用其来解决问题可以达到最大节约空间的目的. 用法: 1.文件包含: ...
- c++中vector等容器的实现机制
stl容器区别: vector list deque set map-底层实现 stl容器区别: vector list deque set map (转) 在STL中基本容器有: vector.li ...
- 不要在公共接口中传递STL容器
最近的一个项目,是开发一个framework,提供给公司内部不同的产品线使用. 之间遇到的一个问题,就是STL容器的使用, 而结论是不要在公共接口中传递STL容器: 这里说的STL容器,但主要则是指容 ...
随机推荐
- 模拟MessageBox
原文:<模拟MessageBox> Posted on 2014/01/07 ======================================================= ...
- Hql查询结果动态组装 List(map),List(bean),List(list),List(set)等格式(转)
1.//查询整个对象String hql="from Users";Query query = session.createQuery(hql);List<Users> ...
- 疯狂的ASP.NET系列-第一篇:啥是ASP.NET后续
之前总结到了ASP.NET的七大特点,只总结了2大特点,现继续总结后面的5大特点. (3)ASP.NET支持多语言 这里说的多语言就是多种开发语言,如C#,VB.NET,无论你采用哪种开发语言,最终的 ...
- [OpenCV] IplImage and Functions
In this chapter, APIs will make U crazy. Good luck! Next, Review Linear Algebra. Ref: http://blog.c ...
- Node.js建站笔记-使用react和react-router取代Backbone
斟酌之后,决定在<嗨猫>项目中引入react,整体项目偏重spa模式,舍弃部分server端的模板渲染,将一部分渲染工作交给前端react实现. react拥有丰富的组件,虽然不如Back ...
- [git]安装git-pylint-commit-hook提高python项目中的代码质量
什么是'git-pylint-commit-hook' 我在工作中,团队为了保证代码和提高代码的质量,要求每个项目都要求安装git-pylint-commit-hook,它是个钩子,会在你提交代码到本 ...
- vertical-align两种应用场合
vertical-align两种应用场合 (1)用在td/th中或display:table-cell元素中:让当前元素中的文本内容在竖直方向上居中 css部分: .content{ ...
- 使用Spark分析拉勾网招聘信息(二): 获取数据
要获取什么样的数据? 我们要获取的数据,是指那些公开的,可以轻易地获取地数据.如果你有完整的数据集,肯定是极好的,但一般都很难通过还算正当的方式轻易获取.单就本系列文章要研究的实时招聘信息来讲,能获取 ...
- MIUI选项框开关样式模拟
有IOS的开关模拟,当然也有MIUI的开关模拟 看到设置选项里面的开关样式,突发奇想地来试试 最终效果如图: 实现过程 1. 选项框checkbox 模拟开关当然需要一个选项框,这里用到了复选框 ...
- Node.js爬虫数据抓取 -- 问题总结
一 返回的信息提示 Something went wrong request模块请求出现未知错误 其中,所用代码如下(无User-Agent部分) 问题多次派查无果,包括: 1:postman请 ...