我面临一个问题,可以说明如下。
有两个节点(直线图表)、1类和2类。
对于类型1的图表中的每一节点,我必须找到以这种方式建造的一套:
让我们不要忘记1号是第一类。
Add node1 in the set. For node1, find out the list of nodes of type2 connected via an edge who s source is node1. For each member in the list obtained above, find the nodes of type 1 (not already in the set) connected via an edge who s target is node of type2. Add those nodes in the set. Rerun, until there is nothing to add in the set.
对所有类型1的点进行分类。
我的直觉正在走向恢复性的执行,但无法说明什么参数(已商定)。
任何建议?