按Graphstream中的属性对节点排序

时间:2017-03-20 12:05:36

标签: java collections graphstream

我正在尝试按属性对Graphstream的节点集合进行排序。我不确定如何做到这一点。

Collection <Node> function (Graph graph){
    BetweennessCentrality bcb = new BetweennessCentrality();
    bcb.init(graph);
    bcb.compute();

    System.out.println("A=" + graph.getNode("A").getAttribute("Cb")); // prints the calculated measure

    return graph.getNodeSet();
}

该函数返回具有属性但未排序的节点集。

如何根据计算的属性对节点集合进行排序?

0 个答案:

没有答案