c++ - 使用 std::sort 对类 vector 进行降序排序

标签 c++ class sorting vector

我有一个名为 HPC_user 的类,并尝试使用其成员变量事件之一按降序对 HPC_user 的 vector 进行排序。似乎 std::sort 应该用第三个参数来完成这项工作。所以我跟着这个线程定义了一个新的更大的结构。

Sorting a vector in descending order

struct cpuComp
{
  bool operator()(HPC_user const & a, HPC_user const & b)
  {
  return a.get_activity() > b.get_activity();
  }
};

int main()
{
  // do something;
    std::vector<HPC_user> users = db2class(ins, days);
  std::sort(users[0], users[len], cpuComp());
//.....
}

当我编译代码时,出现了一些错误:

    In file included from db2class.cpp:3:
    In file included from /usr/include/c++/4.2.1/iostream:44:
    In file included from /usr/include/c++/4.2.1/ostream:44:
    In file included from /usr/include/c++/4.2.1/ios:44:
    In file included from /usr/include/c++/4.2.1/bits/char_traits.h:45:
    In file included from /usr/include/c++/4.2.1/bits/stl_algobase.h:74:
    /usr/include/c++/4.2.1/bits/stl_iterator_base_types.h:128:35: error: no type named 'iterator_category' in 'HPC_user'
          typedef typename _Iterator::iterator_category iterator_category;
                  ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
    /usr/include/c++/4.2.1/bits/stl_algo.h:2854:24: note: in instantiation of template class 'std::iterator_traits<HPC_user>'
          requested here
          typedef typename iterator_traits<_RandomAccessIterator>::value_type
                           ^
    db2class.cpp:119:3: note: in instantiation of function template specialization 'std::sort<HPC_user, bool (*)(const HPC_user &,
          const HPC_user &)>' requested here
      std::sort(users[0], users[len], cpuComp);
      ^
In file included from db2class.cpp:3:
In file included from /usr/include/c++/4.2.1/iostream:44:
In file included from /usr/include/c++/4.2.1/ostream:44:
In file included from /usr/include/c++/4.2.1/ios:47:
In file included from /usr/include/c++/4.2.1/bits/ios_base.h:46:
In file included from /usr/include/c++/4.2.1/bits/locale_classes.h:46:
In file included from /usr/include/c++/4.2.1/string:56:
In file included from /usr/include/c++/4.2.1/algorithm:67:
/usr/include/c++/4.2.1/bits/stl_algo.h:2864:19: error: invalid operands to binary expression ('HPC_user' and 'HPC_user')
      if (__first != __last)
          ~~~~~~~ ^  ~~~~~~
db2class.cpp:122:3: note: in instantiation of function template specialization 'std::sort<HPC_user, cpuComp>' requested here
  std::sort(users[0], users[len], cpuComp());
  ^
/usr/include/c++/4.2.1/bits/postypes.h:206:5: note: candidate template ignored: failed template argument deduction
    operator!=(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs)
    ^
/usr/include/c++/4.2.1/bits/stl_pair.h:109:5: note: candidate template ignored: failed template argument deduction
    operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
    ^
/usr/include/c++/4.2.1/bits/stl_iterator.h:294:5: note: candidate template ignored: failed template argument deduction
    operator!=(const reverse_iterator<_Iterator>& __x,
    ^
/usr/include/c++/4.2.1/bits/stl_iterator.h:344:5: note: candidate template ignored: failed template argument deduction
    operator!=(const reverse_iterator<_IteratorL>& __x,
    ^
/usr/include/c++/4.2.1/bits/allocator.h:120:5: note: candidate template ignored: failed template argument deduction
    operator!=(const allocator<_T1>&, const allocator<_T2>&)
    ^
/usr/include/c++/4.2.1/bits/basic_string.h:2188:5: note: candidate template ignored: failed template argument deduction
    operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,

我做错了什么?对类 vector 进行排序的正确方法是什么?

最佳答案

你想要这个:

std::sort(users.begin(), users.end(), cpuComp());

关于c++ - 使用 std::sort 对类 vector 进行降序排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22087515/

相关文章:

c++ - 如何检查 Clang ASTvisitor 中的变量声明是否为数组

c++ - 为什么要使用 RTTI?

c++ - Qt 创作者 3.3.0 : Open file in project without using mouse

php - 如何使用 PHP 对 CSV 文件进行排序而不对标题行进行排序?

c++ - 无法在cuda内核中使用我的模板类

c++ - 启动具有特定变量值的派生类

java - 错误消息 “Illegal Start of Expression”?

c# - 找出哪个类调用了一个方法

java - 在抽象类中实现compareTo()

c++ - 在排序数组中搜索,比较少