sort模板有两种:
---------------------------------------------------------------------
template<classRanIt>
voidsort(RanItfist,RanItlast);
template<classRanIt,classPred>
voidsort(RanItfist,RanItlast,Predpr);
---------------------------------------------------------------------
第一种模板,sort重排[first,last)之间的元素,产生一个按operate<排列的序列。sort将序列中的元素以升序方式排列。
第二种模板和前一个的行为相似,不过它用pr(X,Y)代替了operate<(x,y)。
例子:
------------------------------
//tmp1.cpp:Definestheentrypointfortheconsoleapplication.
//
#include"stdafx.h"
#include<vector>
#include<algorithm>//Includealgorithms
#include<iostream>
usingnamespacestd;
boolpr(ints1,ints2)
{
returns1>s2;
}
intmain(intargc,char*argv[])
{
vector<int>vec;
vector<int>::iteratori;
vec.push_back(10);
vec.push_back(3);
vec.push_back(7);
sort(vec.begin(),vec.end(),pr);//Sortthevector
for(i=vec.begin();i!=vec.end();i++)
{
cout<<*i<<endl;
}
return0;
}
例子2:
--------------------------------------------------------------------------------------
// tmp1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <vector>
#include <algorithm> // Include algorithms
#include <iostream>
#include <string>
using namespace std;
class myless
{
public:
bool operator()( const int &a, const int &b) {
return a < b;
}
};
int main(int argc, char* argv[])
{
vector<int> vec;
vector<int>::iterator i;
vec.push_back (10);
vec.push_back (3);
vec.push_back (7);
sort(vec.begin(), vec.end(), myless()); // Sort the vector
for (i = vec.begin(); i != vec.end(); i++)
{
cout<<*i<<endl;
}
return 0;
}
例子3:
------------------------------------------------------------------------
// tmp1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <vector>
#include <algorithm> // Include algorithms
#include <iostream>
#include <string>
using namespace std;
typedef struct
{
string first;
string last;
}NAME;
bool sortbyfirst(const NAME& n1, const NAME& n2)
{
return (n1.first<n2.first);
}
bool sortbylast(const NAME& n1, const NAME& n2)
{
return (n1.last<n2.last);
}
int main(int argc, char* argv[])
{
vector<NAME> contacts;
vector<NAME>::iterator j;
NAME tmp;
tmp.first = "liu";
tmp.last = "bei";
contacts.push_back(tmp);
tmp.first = "zhao";
tmp.last = "yun";
contacts.push_back(tmp);
tmp.first = "gun";
tmp.last = "yu";
contacts.push_back(tmp);
tmp.first = "zhang";
tmp.last = "fei";
contacts.push_back(tmp);
cout<<"by first:"<<endl;
sort(contacts.begin(), contacts.end(), sortbyfirst);
for(j=contacts.begin(); j!= contacts.end(); j++)
{
cout<<j->first<<" "<<j->last<<endl;
}
cout<<"by last:"<<endl;
sort(contacts.begin(), contacts.end(), sortbylast);
for(j=contacts.begin(); j!= contacts.end(); j++)
{
cout<<j->first<<" "<<j->last<<endl;
}
return 0;
}
另外还需要说明一下,如果std::sort在一个成员函数中使用的话,
那么定义的比较算子(Predpr)不能是此类的成员函数,而应该是一个全局的函数。
比如,
struct node{
int i;
int j;
string str;
}
class A{
.....
public:
void use_sort();
bool ALess(node n1,node2)
{
if(n1.i<n2.i) return true;
else return false;
}
......
}
bool BLess(node n1,node n2)
{
if(n1.i<n2.i) return true;
else return false;
}
void A::use_sort()
{
vector<node>node_vec;
.....
sort(node_vec.begin(),node_vec.end(),ALess);//not work
sort(node_vec.begin(),node_vec.end(),BLess);//work
}
但是原因是什么呢?
原因其实很简单,因为成员函数只能通过.或者->才能调用的,只写一个函数名进行没有办法为调用。
如果把ALess定义为static , 如
bool static ALess(node n1,node2)
{
if(n1.i<n2.i) return true;
else return false;
}
......
}
就可以了,又有个问题,static放在bool的前面和放在bool的后面有没有什么区别,有区别的话分别是什么含义呢?
相关推荐
### 详细解析 STL 排序(Sort):深入探索 C++ 的强大工具 #### 前言:为何STL是你必须掌握的技能? 对于任何程序员而言,数据结构与算法是编程旅程中的基石。从简单的链表操作到复杂的二叉树遍历,每一项技术都需...
对于C++的STL的双向链表,排序算法有的模板并没有实现,因此给出来,大家参考。
在C++标准模板库(STL)中,`sort`函数是一个非常重要的工具,用于对序列容器(如数组、向量、列表等)中的元素进行排序。本篇将深入探讨`sort`函数的用法及其注意事项,特别是针对普通数组、`vector`以及对象排序的...
STL中的`sort`函数是C++标准模板库(Standard Template Library)中一个非常重要的排序工具,它位于 `<algorithm>` 头文件内。这个函数提供了一种高效且灵活的方式来对容器内的元素进行排序,比如数组、向量或列表。...
例如,你可以使用STL的sort算法对不同类型的容器进行排序,无论是vector、list还是deque,只要它们的迭代器支持必要的操作,sort都能工作。这是因为sort算法并不关心容器的具体实现,它只依赖于迭代器提供的访问和...
### STL之父A.Stepanov专访关键知识点解析 #### 一、STL简介与起源 - **STL**: Standard Template Library(标准模板库),是C++标准库的一部分,由一系列容器类、迭代器、算法和函数对象组成。 - **A. Stepanov**...
在实际编程中,使用STL可以显著提高代码质量,减少错误,因为STL的组件经过精心设计,已进行了大量的优化和测试。此外,STL的文档资源丰富,如FTP站点ftp://butler.hpl.hp.com/stl/、David Mussers的STL主页...
3. 算法:STL提供了一系列通用的算法,如排序(`sort`)、查找(`find`)、复制(`copy`)等,这些算法可以应用于各种容器,提高了代码的可复用性。 4. 配接器:这些是修改或扩展现有容器行为的工具,例如`stack`将...
本篇文章将详细探讨STL中的四个常用组件:`vector`、`map`、`set`以及排序算法`sort`的用法。 1. `vector`: `vector`是STL中最基本的动态数组,它允许在运行时动态增加或减少元素。`vector`提供了许多便利的方法...
C++ STL(Standard ...实践是检验理解的最好方式,尝试编写使用STL的代码,解决实际问题,可以帮助你更好地掌握这一强大的工具。通过本教程,你将能够深入理解STL并将其应用到C++编程中,提升代码的效率和可维护性。
STL 使用注意细节 STL(Standard Template Library)是 C++ 编程语言中的一个标准库,提供了许多有用的容器、算法和迭代器,帮助开发者快速构建高效、可靠的程序。然而,使用 STL 需要注意一些细节,以避免常见的...
- 对于性能敏感的操作,考虑使用STL的算法,如`std::sort()`对数据进行排序,`std::unique()`去重,`std::binary_search()`和`std::lower_bound()`进行二分查找。 - 为保证代码的健壮性,需要处理可能的边界条件和...
- **容器、迭代器和算法**:STL的核心组成部分包括容器(如vector、list)、迭代器(用于遍历容器元素)和算法(如sort、search等)。 - **类型安全性**:通过使用模板和严格的类型检查,STL保证了类型安全性,减少...
3. STL中的算法:STL提供了多种算法,包括find、copy、sort、merge等,每种算法都有其特点和使用场景。 4. find算法:find算法用于在容器中查找特定元素,它返回一个迭代器,如果找到元素,则返回该元素的迭代器,...
1. **容器**:STL的核心之一是容器,它们可以存储、管理和组织数据。主要有以下几种容器: - `vector`:动态数组,支持随机访问和快速插入/删除尾元素。 - `deque`:双端队列,支持两端的快速插入和删除。 - `...
以下是对C++ STL库使用的一些关键知识点的详细解释: 1. 容器: - **vector**:动态数组,支持随机访问和高效插入/删除元素(尾部)。 - **deque**:双端队列,可在两端进行高效插入/删除操作。 - **list**:...