- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个通用树实现,但在编写递归树比较时遇到此错误。在第 89 行,我收到此错误:没有用于调用“Tree::operator==(Tree&, Tree&) const”的匹配函数这是我的代码:
#include <iostream>
#include <list>
template<class T> class Tree {
public:
Tree();
Tree(const T& pNode);
virtual ~Tree();
const T& getNode();
void setNode(const T& pNode);
void addChild(Tree<T>* pChild);
const Tree<T>* getChild(int pIndex);
const std::list<Tree<T>*>* getChildren();
void printTree(const Tree<T>* pTree, int pLevel);
bool operator==(const Tree<T>& other) const;
private:
T node;
std::list<Tree<T>*>* children;
};
template<class T> Tree<T>::Tree(const T& pNode) :
node(pNode), children(nullptr) {
}
template<class T> Tree<T>::Tree() :
node(T()), children(nullptr) {
}
template<class T> Tree<T>::~Tree() {
delete children;
}
template<class T> const T& Tree<T>::getNode() {
return this->node;
}
template<class T> void Tree<T>::setNode(const T& pNode) {
this->node = pNode;
}
template<class T> void Tree<T>::addChild(Tree<T>* pChild) {
if (this->children == nullptr) {
this->children = new std::list<Tree<T>*>();
}
this->children->push_back(pChild);
}
template<class T> const Tree<T>* Tree<T>::getChild(int pIndex) {
if (true) {
}
return this->children[pIndex];
}
template<class T> void Tree<T>::printTree(const Tree<T>* pTree,
int pLevel = 0) {
for (int i = 0; i < pLevel; i++) {
std::cout << " "; // Print 2 spaces for each level
}
std::cout << pTree->node << std::endl;
if (pTree->children != nullptr) {
for (typename std::list<Tree<T>*>::iterator i =
pTree->children->begin(); i != pTree->children->end(); i++) {
printTree(*i, pLevel + 1);
}
}
}
template<class T> const std::list<Tree<T>*>* Tree<T>::getChildren() {
return this->children;
}
template<class T> bool Tree<T>::operator==(const Tree<T>& other) const {
bool ret = false;
if (this->node == other.node) {
ret = true;
typename std::list<Tree<T>*>::iterator i, j;
for (i = this->children->begin(), j = other.children->begin();
i != this->children->end() && j != other.children->end();
i++, j++) {
ret = ret && (operator==(*i, *j)); // This is the line with the error
}
}
return ret;
}
int main(int argc, char **argv) {
Tree<int> a1(1), b1(2), c1(3);
Tree<int> a2(1), b2(2), c2(3);
a1.addChild(&b1);
a1.addChild(&c1);
a2.addChild(&b2);
a2.addChild(&c2);
bool ret = a1 == a2;
std::cout << ret << std::endl;
return 0;
}
最佳答案
Tree*
的迭代器在取消引用时返回 Tree*
。
您在两个 Tree*
上调用 Tree::operator==
或免费的 operator==
,这就是没有找到(不足为奇)。如果要比较树,则需要再次取消引用。并在使用时使用中缀 ==
。所以**i==**j
。
您应该首先检查是否为 null -- *i&&*j&&(**i==**j)
-- 除非您希望两个空指针比较相等? (...)||(!*j&&!*i)
或者作为可能的优化:(*i==*j)||(*i&&*j&&(**i ==**j))
当两个指针相同时也跳过相等,并减少分支。
或者,如果您不想比较树
而是比较指针,请执行*i == *j
。
关于c++ - 没有匹配函数调用 ‘Tree<int>::operator==(Tree<int>*&, Tree<int>*&) const’,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21661246/
我使用以下语句对句子进行了分块: grammar = '''
在空间索引方面更喜欢 R+-Tree 而不是 R-Tree 的主要原因是什么?据我所知,R+-Tree 避免节点重叠导致更复杂的代码、更复杂的除法算法等。 R*-tree 与 R-tree 非常相似,
我有这个通用树实现,但在编写递归树比较时遇到此错误。在第 89 行,我收到此错误:没有用于调用“Tree::operator==(Tree&, Tree&) const”的匹配函数这是我的代码: #i
除了 GIS 应用程序,还有哪些其他应用程序或库使用 R 树及其变体? 最佳答案 电脑游戏经常如此。 Here's a link to something cool . 计算机图形学——包括软件和硬件
我正在使用名为 collective.virtualtreecategories 的附加产品在 plone 中生成一棵树。但是,我不断收到奇怪的 javascript 错误,无法显示树。 在我的浏览器
我必须检查一个节点是否属于 lisp 中的一棵树,但我不知道为什么它不起作用。 这是我的代码: (defun number-of-elems (l) (cond ((null l) 0)
我对以下树的术语感到困惑,我一直在研究树,但无法区分这些树: a) 完全二叉树 b) 严格二叉树 c) 完整二叉树 请帮我区分这些树。这些树何时何地在数据结构中使用? 最佳答案 完美的树:
我在应用程序的多个页面上使用相同的 dijit.Tree View ,并且我希望将 cookie 保存为服务器名称,而不是文件夹名称。 现在我有 3 个页面和 3 个 cookie,每个页面都有自己的
我想知道是否有一个现有的单词来描述我当前正在使用的流程。我想称之为“压扁一棵树”,但我觉得一定有更好的词或短语。 输入: |--D --B | |--C | A-E | | |--G --F
我正在尝试理解 nltk.tree 模块。我很困惑为什么当打印 nltk.tree.Tree 对象时,它不打印出地址。相反,它打印出树的字符串表示形式。 我查看了 nltk.tree 中的源代码,但我
我想构建 2 个树结构。第一个树将包含节点,每个节点都有我的 Range 对象的列表: class Range { public DateTime Start { get; set; }
有人有一个带有图标和来自服务的数据源的 mat-tree 示例吗? Stackblitz 上的一个例子会很棒。 最佳答案 使用 https://stackblitz.com/edit/ng-mat-t
我意识到答案可能是存在多个有效的此类实例(例如整数;总和、乘积……的情况)。也许有人有比这更令人满意的答案? 正如 Joachim Breitner 在此答案中出色地解释的那样 How do you
我在 powerbuilder 中使用树数据窗口。这代表了树和表的混合。 我的问题是:树没有明显区分可扩展和不可扩展节点。如果一个节点不可展开,该节点前面的图标仍然是加号,如果我点击加号,树会在当前节
下午好! 我有决策树的问题。 f11<-as.factor(Z24train$f1) fit_f1 <- rpart(f11~TSU+TSL+TW+TP,data = Z24train,method=
对于处理语言,如在常规字典单词中,阅读速度更快,是基数树还是常规 b 树?有没有更快的方法,例如带有桶和散列的字典? 最佳答案 与往常一样,您需要在应用程序上下文中进行基准测试才能确定。 但是,我希望
我正在使用 Doctrine's 2 Tree-Nestedset extension使用 MySQL IndoDB 数据库。 yml 表架构如下所示: Ext\Entity\PageElement:
我正在尝试在我的光线追踪器中遍历 3D KD 树。树是正确的,但我的遍历算法似乎有问题,因为与使用蛮力方法相比,我遇到了一些错误(一些小表面积似乎被忽略了)。 注意:所讨论的光线都不平行于任何轴。 这
我正在使用nltk.tree.Tree来读取基于选区的解析树。我需要找到从树中的一个特定单词到另一个单词所需移动的节点路径。 一个简单的例子: 这是句子“saw the dogs”的解析树: (VP
我正在研究为我的应用程序组合自定义存储方案的可能性。我认为,重新发明轮子的努力是值得的,因为性能和存储效率都是主要目标,并且其上的数据和操作比 RDBMS 提供的所有内容(无更新、无删除、预定义查询集
我是一名优秀的程序员,十分优秀!