在其中一个变量上对多变量结构进行排序

时间:2015-01-04 17:05:51

标签: c++ struct quicksort boolean-operations

大家早上好, 我试图根据其中一个变量的值对结构中连接的3个变量进行排序。为了使自己清楚,我有一个名为edge的变量的结构类型,它有3个int:edge.a edge.b和edge.w.我想按edge.w上的值排序。我发现要实现这一点,我需要使用bool运算符,但我还没有发现如何。这是我的代码:

struct type{
   int a,b,w;
   bool operator<(const edge&A) const{
        return w<A.w;
   };
};
type edge[6];
sort (edge);

sort()包含在库中,并在括号上对数组执行快速排序。 请帮忙, TY

1 个答案:

答案 0 :(得分:1)

尝试以下

#include <algorithm>

//...

struct type{
   int a,b,w;
   bool operator<(const type& A) const{
        return w<A.w;
   };
};

type edge[6];

//...

std::sort( edge, edge + 6 );

或者

#include <algorithm>
#include <iterator>

//...

struct type{
   int a,b,w;
   bool operator<(const type& A) const{
        return w<A.w;
   };
};

type edge[6];

//...

std::sort( std::begin( edge ), std::end( edge ) );

另一种方法如下

#include <algorithm>
#include <iterator>

//...

struct type{
   int a,b,w;

   struct sort_by_a
   {
       bool operator ()(const type &lhs, const type &rhs ) const
       {
           return  lhs.a < rhs.a;
       }
   };
   struct sort_by_b
   {
       bool operator ()(const type &lhs, const type &rhs ) const
       {
           return  lhs.b < rhs.b;
       }
   };
   struct sort_by_w
   {
       bool operator ()(const type &lhs, const type &rhs ) const
       {
           return  lhs.w < rhs.w;
       }
   };
};

type edge[6];

//...

std::sort( std::begin( edge ), std::end( edge ), type::sort_by_a() );
//...
std::sort( std::begin( edge ), std::end( edge ), type::sort_by_b() );
//...
std::sort( std::begin( edge ), std::end( edge ), type::sort_by_w() );