Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为包含值 >= 0 的叶节点的 n 级数据集创建了 d3 树布局。一些分支比其他分支短,即并非所有叶都处于同一级别。
我现在想修剪叶子值总和等于 0 的那些层次结构(叶子和分支)的树,但不知道该怎么做。任何建议表示赞赏。
如果您可以像普通树一样导航树,则执行后序遍历,它会先于其父节点访问树中的所有节点。
当你访问每个节点时,