java - 在java中的neo4j嵌入式数据库中,我应该如何检查两个节点是否相互关联?
我想要语法或教程链接,我看过 neo4j 网站但没有找到。
谢谢。
java - 在java中的neo4j嵌入式数据库中,我应该如何检查两个节点是否相互关联?
我想要语法或教程链接,我看过 neo4j 网站但没有找到。
谢谢。
给定两个节点“nodeA”和“nodeB”,
获取附加到“nodeA”的所有关系,
rels = nodeA.getRelationships();
遍历关系集合“rels”,对每个关系“rel”,测试另一端节点是否为nodeB
rel.getOtherNode(nodeA).equals(nodeB)
如果上述表达式对于其中一种关系成立,则 nodeA 和 nodeB 是连接的。
这是“Node”和“Relationshiip”的java API,
private boolean sharedRelationshipExists( Node nodeA, long nodeBId)
{
Iterator<Relationship> iterator = nodeA.getRelationships().iterator();
while ( iterator.hasNext() )
{
if (iterator.next().getOtherNode( nodeA ).getId() == nodeBId) return true;
}
return false;
}
// in another part
boolean sharedRelationshipBetweenAB;
if ( nodeA.getDegree() < nodeB.getDegree() )
{
sharedRelationshipBetweenAB = sharedRelationshipExists( nodeA, nodeB.getId() );
}
else
{
sharedRelationshipBetweenAB = sharedRelationshipExists( nodeB, nodeA.getId() );
}
布尔值sharedRelationshipBetweenAB
将保留您的答案