Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种算法来确定图中的每个顶点 v 是否有一条从 v 到最多 20 个其他顶点的路径。!
您所要做的就是找到图表的连接组件。基数至少 20 的连通分量中的顶点是您要查找的顶点。
您可以直接使用不相交集数据结构来获得真正有效的算法。