尝试使用该类结构中的变量创建自定义类的优先级队列

时间:2015-04-21 22:32:15

标签: c++ c++11 queue priority-queue

所以这是我的类,目标是创建一个按顺序排列的bnode优先级队列,以便具有最低计数的符号的bnode具有最高优先级。这是我的代码:

struct symbol {
    explicit symbol(char av = 0, int ac = 0) : value(av), count(ac) { }
    char value; // actual symbol, by default 0 (empty)
    int count;  // count of the symbol, by default 0
}; // symbol

// compare two symbols
// symbol with a lower count is "less than" symbol with a higher count
inline bool operator<(const symbol& lhs, const symbol& rhs) {
    return ((lhs.count < rhs.count) || (!(rhs.count < lhs.count) && (lhs.value < rhs.value)));
} // operator<

template <typename T> struct bnode {
    explicit bnode(const T& t = T(), bnode* l = 0, bnode* r = 0)
        : value(t), left(l), right(r) { }

    T value;      // payload

    bnode* left;  // left child
    bnode* right; // right child
}; // struct bnode

#endif // SYMBOL_HPP

//and here is me trying to make a priority queue:

std::priority_queue<bnode<symbol>,std::vector<bnode<symbol> >, std::less<std::vector<bnode<symbol> >::value_type::value> > queue;

这会导致错误:错误:'bnode :: value'不能出现在常量表达式中

2 个答案:

答案 0 :(得分:0)

我估计你想要这个:

 std::priority_queue<bnode<symbol>, std::vector<bnode<symbol> >, 
      std::less<std::vector<bnode<symbol> >::value_type> > queue;

答案 1 :(得分:0)

您的priority_queue正在存储bnode<symbol>,因此您需要为operator<提供bnode

template <typename T>
bool operator<(bnode<T> const& l, bnode<T> const& r)
{
    // perform comparison
}

完成后,无需为priority_queue提供第二个和第三个模板参数,默认值有效。

std::priority_queue<bnode<symbol> > queue;

或者如果要指定所有模板参数

std::priority_queue<bnode<symbol>, 
                    std::vector<bnode<symbol> >, 
                    std::less<bnode<symbol> > > queue;