- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个具有兄弟顺序的树状层次结构。我需要添加对其他树的引用。
这是数据:
drop table if exists org; CREATE TABLE org(id int primary key, name text, boss int, sibling int, ref int) without rowid;
INSERT INTO org VALUES(0, 'Alice', NULL, null, null);
INSERT INTO org VALUES(1, 'Bob', 0, null, null);
INSERT INTO org VALUES(2, 'Cindy', 0, 1, null);
INSERT INTO org VALUES(3, 'Dave', 1, 4, 7);
INSERT INTO org VALUES(4, 'Emma', 1, null, null);
INSERT INTO org VALUES(5, 'Fred', 2, null, null);
INSERT INTO org VALUES(6, 'Gail', 2, 5, null);
INSERT INTO org VALUES(7, 'Helen', NULL, null, null);
INSERT INTO org VALUES(8, 'Igor', 7, null, null);
INSERT INTO org VALUES(9, 'Jerome', 7, 8, null);
Dave 引用了 Helen 领导的树。
我添加了 refs 子句:
WITH RECURSIVE
refs(id, name, boss, sibling, ref, lref) AS (
SELECT id, name, boss, sibling, ref, 0 FROM org
UNION ALL
SELECT org.id, org.name, org.boss, org.sibling, org.ref, refs.lref+1
FROM org JOIN refs ON org.id=refs.ref
),
sibs(id, name, boss, lref, lsib) AS (
SELECT id, name, boss, lref, 0 FROM refs
WHERE sibling IS NULL
UNION ALL
SELECT refs.id, refs.name, refs.boss, refs.lref, sibs.lsib + 1
FROM refs
JOIN sibs ON refs.boss = sibs.boss
AND refs.sibling = sibs.id
),
tree(id, name, lsib, lref, level) AS (
select id, name, 0, 0, 0 from org where id = 0
UNION ALL
SELECT sibs.id, sibs.name, sibs.lsib, sibs.lref, tree.level+1
FROM sibs JOIN tree ON sibs.boss=tree.id
ORDER BY 4 DESC, 5 DESC, 3 DESC
)
SELECT group_concat(name) FROM tree;
但结果不包括海伦的树:
Alice,Cindy,Gail,Fred,Bob,Dave,Emma
我怎样才能得到海伦树的完整结果:
Alice,Cindy,Gail,Fred,Bob,Dave,Helen,Igor,Jerome,Emma
编辑:
Bob 和 Cindy - 以及 Fred&Gail- 被颠倒了......实际预期结果是:
Alice,Bob,Dave,Helen,Igor,Jerome,Emma,Cindy,Fred,Gail
最佳答案
我认为您无法获得以下预期输出:
Alice,Cindy,Gail,Fred,Bob,Dave,Helen,Igor,Jerome,Emma
因为你要求对同一个案例有不同的结果:
(如果 Cindy 必须在 Bob 之前打印,那么 Jerome 必须在 Igor 之前打印)
我认为预期的输出应该是:
Alice,Cindy,Gail,Fred,Bob,Dave,Helen,Jerome,Igor,Emma
或
Alice,Bob,Dave,Helen,Igor,Jerome,Emma,Cindy,Fred,Gail
我尝试了以下查询(使用 refs.id 而不是 org.boss):
WITH RECURSIVE
refs(id, name, boss, sibling, ref, lref) AS (
SELECT id, name, boss, sibling, ref, 0 FROM org
UNION ALL
SELECT org.id, org.name, refs.id, org.sibling, org.ref, refs.lref+1
FROM org JOIN refs ON org.id=refs.ref
),
sibs(id, name, boss, lref, lsib,ref) AS (
SELECT id, name, boss, refs.lref, 0,ref FROM refs
WHERE sibling IS NULL
UNION ALL
SELECT refs.id, refs.name, refs.boss, refs.lref, sibs.lsib + 1,refs.ref
FROM refs
JOIN sibs ON refs.boss = sibs.boss
AND refs.sibling = sibs.id
),
tree(id, name, lsib, lref, level) AS (
select org.id, org.name, 0, 0, 0 from org
where id = 0
UNION ALL
SELECT sibs.id, sibs.name, sibs.lsib, sibs.lref, tree.level+1
FROM sibs JOIN tree ON sibs.boss = tree.id
ORDER BY 4 DESC, 5 DESC
)
select group_concat(name) from tree;
Alice,Bob,Dave,Helen,Igor,Jerome,Emma,Cindy,Fred,Gail
我使用了不同的方法:
WITH RECURSIVE
pc(id,name,parent,priority) AS(
select org.id,org.name,coalesce(refs.id,org.boss,-1) as "parent",
case
when refs.id is not null then 3
when sibls.id is not null then 2
when org.boss is not null then 1
else 0 end as "priority"
from org left join org as refs on org.id = refs.ref
left join org as sibls on org.id = sibls.sibling
where org.id > 0),
tree(id,name,parent,priority,level) AS(
select id,name,0,0,0 from org where id = 0
UNION ALL
select pc.id,pc.name,pc.parent,pc.priority,tree.level + 1 from pc
join tree on tree.id = pc.parent
order by 3 desc )
select group_concat(name) from tree
Alice,Bob,Dave,Helen,Igor,Jerome,Emma,Cindy,Fred,Gail
关于sql - 带有子句 : nesting trees,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55549902/
我使用以下语句对句子进行了分块: 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 提供的所有内容(无更新、无删除、预定义查询集
我是一名优秀的程序员,十分优秀!