如何对 STL 向量进行排序?

2022-01-07 00:00:00 sorting c++ stl

我想对 vector 进行排序

vector<myClass> object;

其中 myclass 包含许多 int 变量.如何在 myClass 的任何特定数据变量上对我的 vector 进行排序.

Where myclass contains many int variables. How can I sort my vector on any specific data variable of myClass.

推荐答案

重载小于运算符,然后排序.这是我从网上找到的一个例子...

Overload less than operator, then sort. This is an example I found off the web...

class MyData
{
public:
  int m_iData;
  string m_strSomeOtherData;
  bool operator<(const MyData &rhs) const { return m_iData < rhs.m_iData; }
};

std::sort(myvector.begin(), myvector.end());

来源:此处

相关文章