gpt4 book ai didi

c++ - 如何返回 boost::property_tree 的叶节点

转载 作者:搜寻专家 更新时间:2023-10-31 01:39:50 25 4
gpt4 key购买 nike

我有一个属性树,所有数据都存储在它的叶节点中。然而,树具有复杂的结构。我现在要做的是:

  1. 获取树的所有(且仅)叶子节点,因为它们包含数据并且
  2. 回想一下通往相应叶节点的路径

最终,我想接收所有(且仅)叶节点的键/值对,其中键包含节点的完整路径,值包含节点的值。

我的问题是:

  1. 有没有比递归遍历整棵树更方便的方法,存储各自的路径并读出没有 child 的节点的值(即“get_leaves() “功能)?
  2. 如果我有一些指向给定树的子树(ptree 变量、迭代器 等等)的指针,是否有一种方法可以轻松确定相对路径树内的那个子树?

最佳答案

我只是写了一些辅助函数。他们真的没有那么难。这是一个完全通用的树访问函数,它可以选择性地接受一个谓词:

template <typename Tree, typename F, typename Pred/* = bool(*)(Tree const&)*/, typename PathType = std::string>
void visit_if(Tree& tree, F const& f, Pred const& p, PathType const& path = PathType())
{
if (p(tree))
f(path, tree);

for(auto& child : tree)
if (path.empty())
visit_if(child.second, f, p, child.first);
else
visit_if(child.second, f, p, path + "." + child.first);
}

template <typename Tree, typename F, typename PathType = std::string>
void visit(Tree& tree, F const& f, PathType const& path = PathType())
{
visit_if(tree, f, [](Tree const&){ return true; }, path);
}

您可以将它与像这样的谓词一起使用

#include <boost/property_tree/ptree.hpp>

bool is_leaf(boost::property_tree::ptree const& pt) {
return pt.empty();
}

这是一个简单的演示:

Live On Coliru

#include <iostream>
int main()
{
using boost::property_tree::ptree;
auto process = [](ptree::path_type const& path, ptree const& node) {
std::cout << "leave node at '" << path.dump() << "' has value '" << node.get_value("") << "'\n";
};

ptree pt;
pt.put("some.deeply.nested.values", "just");
pt.put("for.the.sake.of.demonstration", 42);

visit_if(pt, process, is_leaf);
}

打印:

leave node at 'some.deeply.nested.values' has value 'just'
leave node at 'for.the.sake.of.demonstration' has value '42'

更新

刚刚注意到问题的后半部分。以下是使用同一个访问者的方法:

template <typename Tree>
boost::optional<std::string> path_of_optional(Tree const& tree, Tree const& target) {
boost::optional<std::string> result;

visit(tree, [&](std::string const& path, Tree const& current) { if (&target == &current) result = path; });

return result;
}

template <typename Tree>
std::string path_of(Tree const& tree, Tree const& target) {
auto r = path_of_optional(tree, target);
if (!r) throw std::range_error("path_of");
return *r;
}

还有一个演示 Live On Coliru

std::cout << "Path from node: " << path_of(pt, pt.get_child("for.the.sake")) << "\n";

关于c++ - 如何返回 boost::property_tree 的叶节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30571536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com