作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经多次重复一大块类似的代码。这是伪代码中的样子:
stack.push(root)
while stack size > 0
node = stack.pop()
if condition_1
if node is leaf
if condition_2
// do something,
// for example, push node into a vector and return the vector
else
stack.push(children of node)
或者像这样:
stack.push(root)
while stack size > 0
node = stack.pop()
if condition_1
if node is leaf
if condition_2 // or no condition_2 and return true directly
return true
else
stack.push(children of node)
return false
这两个代码片段的区别在于第一个代码片段遍历所有叶节点,而第二个代码片段具有中断逻辑。通常我做的主要工作是 condition_2
及其范围内的内容。其他行只是在重复自己。
那么有没有办法在 C++ 或任何其他语言中提取这种树迭代循环?
最佳答案
正如我正确理解的那样,您想拥有该算法的通用版本。
我不知道您想要通用化哪些部分,所以这是一个非常简单的解决方案,其中所有内容都是通用的。
template <class NodeType, class TraversalPredicate, class LeafPredicate,
class TerminalPredicate, class ChildrenGetter>
bool findIf(NodeType *root, TraversalPredicate shouldTraverse,
LeafPredicate isLeaf, TerminalPredicate shouldFinish,
ChildrenGetter getChildren) {
std::stack<NodeType *> stack;
stack.push(root);
while (not stack.empty()) {
auto *node = stack.top();
stack.pop();
if (not shouldTraverse(node))
continue;
if (isLeaf(node)) {
if (shouldFinish(node)) {
return true;
}
} else {
for (auto *child : getChildren(node)) {
stack.push(child);
}
}
}
return false;
}
我希望这就是您要找的!
关于c++ - 如何在 C++ 中提取树迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58992295/
我是一名优秀的程序员,十分优秀!