📌  相关文章
📜  fonction parcourt en largeure sur un graphe - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:22.045000             🧑  作者: Mango

代码示例1
ParcoursLargeur(Graphe G, Sommet s):
       f = CreerFile();
       f.enfiler(s);
       marquer(s);
       tant que la file est non vide
                s = f.defiler();
                afficher(s);
                pour tout voisin t de s dans G
                         si t non marqué
                                 f.enfiler(t);
                                 marquer(t);