【转】c++中Vector等STL容器的自定义排序

本文涉及的产品
容器镜像服务 ACR,镜像仓库100个 不限时长
简介:

如果要自己定义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:重载运算符

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#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:全局的比较函数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#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:函数对象

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#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)全局的比较函数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#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)函数对象

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#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;
  }

  本文转自编程小翁博客园博客,原文链接:http://www.cnblogs.com/wengzilin/p/3937491.html,如需转载请自行联系原作者

相关文章
|
10天前
|
算法 C语言 C++
【c++丨STL】list的使用
本文介绍了STL容器`list`的使用方法及其主要功能。`list`是一种双向链表结构,适用于频繁的插入和删除操作。文章详细讲解了`list`的构造函数、析构函数、赋值重载、迭代器、容量接口、元素访问接口、增删查改操作以及一些特有的操作接口如`splice`、`remove_if`、`unique`、`merge`、`sort`和`reverse`。通过示例代码,读者可以更好地理解如何使用这些接口。最后,作者总结了`list`的特点和适用场景,并预告了后续关于`list`模拟实现的文章。
25 7
|
27天前
|
存储 编译器 C语言
【c++丨STL】vector的使用
本文介绍了C++ STL中的`vector`容器,包括其基本概念、主要接口及其使用方法。`vector`是一种动态数组,能够根据需要自动调整大小,提供了丰富的操作接口,如增删查改等。文章详细解释了`vector`的构造函数、赋值运算符、容量接口、迭代器接口、元素访问接口以及一些常用的增删操作函数。最后,还展示了如何使用`vector`创建字符串数组,体现了`vector`在实际编程中的灵活性和实用性。
52 4
|
29天前
|
C语言 C++ 容器
【c++丨STL】string模拟实现(附源码)
本文详细介绍了如何模拟实现C++ STL中的`string`类,包括其构造函数、拷贝构造、赋值重载、析构函数等基本功能,以及字符串的插入、删除、查找、比较等操作。文章还展示了如何实现输入输出流操作符,使自定义的`string`类能够方便地与`cin`和`cout`配合使用。通过这些实现,读者不仅能加深对`string`类的理解,还能提升对C++编程技巧的掌握。
68 5
|
29天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
50 2
|
9天前
|
存储 对象存储 C++
C++ 中 std::array<int, array_size> 与 std::vector<int> 的深入对比
本文深入对比了 C++ 标准库中的 `std::array` 和 `std::vector`,从内存管理、性能、功能特性、使用场景等方面详细分析了两者的差异。`std::array` 适合固定大小的数据和高性能需求,而 `std::vector` 则提供了动态调整大小的灵活性,适用于数据量不确定或需要频繁操作的场景。选择合适的容器可以提高代码的效率和可靠性。
31 0
|
13天前
|
存储 编译器 C语言
【c++丨STL】vector模拟实现
本文深入探讨了 `vector` 的底层实现原理,并尝试模拟实现其结构及常用接口。首先介绍了 `vector` 的底层是动态顺序表,使用三个迭代器(指针)来维护数组,分别为 `start`、`finish` 和 `end_of_storage`。接着详细讲解了如何实现 `vector` 的各种构造函数、析构函数、容量接口、迭代器接口、插入和删除操作等。最后提供了完整的模拟实现代码,帮助读者更好地理解和掌握 `vector` 的实现细节。
26 0
|
16天前
|
监控 NoSQL 时序数据库
《docker高级篇(大厂进阶):7.Docker容器监控之CAdvisor+InfluxDB+Granfana》包括:原生命令、是什么、compose容器编排,一套带走
《docker高级篇(大厂进阶):7.Docker容器监控之CAdvisor+InfluxDB+Granfana》包括:原生命令、是什么、compose容器编排,一套带走
156 77
|
25天前
|
监控 Docker 容器
在Docker容器中运行打包好的应用程序
在Docker容器中运行打包好的应用程序
|
3天前
|
存储 Kubernetes 开发者
容器化时代的领航者:Docker 和 Kubernetes 云原生时代的黄金搭档
Docker 是一种开源的应用容器引擎,允许开发者将应用程序及其依赖打包成可移植的镜像,并在任何支持 Docker 的平台上运行。其核心概念包括镜像、容器和仓库。镜像是只读的文件系统,容器是镜像的运行实例,仓库用于存储和分发镜像。Kubernetes(k8s)则是容器集群管理系统,提供自动化部署、扩展和维护等功能,支持服务发现、负载均衡、自动伸缩等特性。两者结合使用,可以实现高效的容器化应用管理和运维。Docker 主要用于单主机上的容器管理,而 Kubernetes 则专注于跨多主机的容器编排与调度。尽管 k8s 逐渐减少了对 Docker 作为容器运行时的支持,但 Doc
27 5
容器化时代的领航者:Docker 和 Kubernetes 云原生时代的黄金搭档
|
9天前
|
关系型数据库 应用服务中间件 PHP
实战~如何组织一个多容器项目docker-compose
本文介绍了如何使用Docker搭建Nginx、PHP和MySQL的环境。首先启动Nginx容器并查看IP地址,接着启动Alpine容器并安装curl测试连通性。通过`--link`方式或`docker-compose`配置文件实现服务间的通信。最后展示了Nginx配置文件和PHP代码示例,验证了各服务的正常运行。
29 3
实战~如何组织一个多容器项目docker-compose