huffman tag

1 questions


1 answers
31 views
0
C++ LNK1120 1 unverifiable external reference. There's an error. Why is that?

Huffman.cpp#include Huffman.hbool Node::operator()(const Node* lhs, const Node* rhs) const { return lhs->cnt > rhs->cnt;}Huffman::~Huffman() { std::stack<Node*> st; st.push(binTree); wh...

2 years ago

© 2024 OneMinuteCode. All rights reserved.