鉴于此依赖关系图:从下到上遍历它的“好”方法是什么?
我对每个“周期”的预期结果是:
Iteration step "1": Project B, Project D, Project Z, Project O
Iteration step "2": Project C, Project W, Project V, Project Q
Iteration step "3": Project A, Project M
Iteration step "4": Start X // End
头脑风暴
// PSEUDO CODE: Find and return "next projects fixes" to perform.
// -> All projects with no or already fixed dependencies.
FUNC FindNextDependciesToFix ( NODE StartNode, BYREF LIST<NODE> RefNextProjectsToFix )
{
... // Algorithm ?
}
“深度优先搜索”不起作用的原因:
DO
{
FindNextDependciesToFix (StartX, FixNextList);
CallASYNCAndWaitForEndOfFix (FixNextList);
// <- Wait till end of project fix (async...)
} WHILE ( FixNextList.IsEmpty() );
算法
我真的不想重新发明轮子:那么是否已经有一种算法可以解决这个问题,或者有没有人有一个“聪明”的方法?