我創建了使用由給定的代碼包含一個字符和一個字符串C++二叉樹超載
struct M2E
{ char english;
string morse;}
一個stuct,我創建M2E的二進制樹是二叉樹 ,但我想在字符串這些M2Es排序爲了莫爾斯(「*」小於「 - 」) 所以我做了算子在結構M2E超載
bool operator == (M2E& other) const
{
return morse.compare(other.morse);
}
,但我繼續給下面的錯誤消息時,即時通訊compling
no match for "operator ==" in ((binNode<M2E>*)this)->binNode<M2E>::nodeData == dataItem
note:candidates are :bool M2E::operator==(M2E&) const
我使用二進制樹的代碼是bintree.h是:
template <typename dataType> class bintree
{
private:
binNode<dataType> *root;
int numItems;
void insert(const dataType& newData)
{
// insert the newData into the tree
if (root == NULL)
{
root = new binNode<dataType>(newData);
}
else
{
root->insert(root, newData);
}
numItems++;
}
使用二進制節點的編碼IM是binnode.h是:
template <typename dataType> class binNode
{
private:
// private data ====================================
dataType nodeData;
binNode<dataType> *left, *right;
void insert(binNode<dataType>* &root, const dataType& dataItem)
{
if (nodeData == dataItem)
{
throw std::invalid_argument("dataItem already in tree");
}
if (dataItem < nodeData)
{
if (left == NULL)
{
left = new binNode(dataItem);
}
else
{
left->insert(left, dataItem);
}
}
else
{
if (right == NULL)
{
right = new binNode(dataItem);
}
else
{
right->insert(right, dataItem);
}
}
rebalance(root);
}
THX的幫助
實際上我把另一個重載運算符>除非你使用Visual Studio這是不工作的,以及 –