13

java - 在java中的neo4j嵌入式数据库中,我应该如何检查两个节点是否相互关联?

我想要语法或教程链接,我看过 neo4j 网站但没有找到。

谢谢。

4

2 回答 2

12

给定两个节点“nodeA”和“nodeB”,

  1. 获取附加到“nodeA”的所有关系,

    rels = nodeA.getRelationships();
    
  2. 遍历关系集合“rels”,对每个关系“rel”,测试另一端节点是否为nodeB

    rel.getOtherNode(nodeA).equals(nodeB)
    
  3. 如果上述表达式对于其中一种关系成立,则 nodeA 和 nodeB 是连接的。

这是“Node”和“Relationshiip”的java API,

http://api.neo4j.org/current/

于 2013-10-20T14:50:30.240 回答
0
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将保留您的答案

于 2016-12-14T21:29:49.033 回答