本文簡要介紹 python 語言中 scipy.sparse.csgraph.depth_first_order
的用法。
用法:
scipy.sparse.csgraph.depth_first_order(csgraph, i_start, directed=True, return_predecessors=True)#
返回從指定節點開始的深度優先排序。
請注意,深度優先順序不是唯一的。此外,對於有環的圖,深度優先搜索生成的樹也不是唯一的。
- csgraph: 數組 或稀疏矩陣
N x N 壓縮稀疏圖。輸入的 csgraph 將被轉換為 csr 格式進行計算。
- i_start: int
起始節點的索引。
- directed: 布爾型,可選
如果為 True(默認值),則對有向圖進行操作:僅沿著路徑 csgraph[i, j] 從點 i 移動到點 j。如果為 False,則在無向圖上找到最短路徑:算法可以沿著 csgraph[i, j] 或 csgraph[j, i] 從點 i 前進到 j。
- return_predecessors: 布爾型,可選
如果為 True(默認),則返回前趨數組(見下文)。
- node_array: ndarray,一維
從指定節點開始的深度優先節點列表。 node_array的長度是從指定節點可到達的節點數。
- predecessors: ndarray,一維
僅當 return_predecessors 為 True 時才返回。深度優先樹中每個節點的前驅的 length-N 列表。如果節點 i 在樹中,則其父節點由前驅[i] 給出。如果節點 i 不在樹中(並且對於父節點),則前驅 [i] = -9999。
參數 ::
返回 ::
注意:
如果可能存在多個有效解決方案,則輸出可能會因 SciPy 和 Python 版本而異。
例子:
>>> from scipy.sparse import csr_matrix >>> from scipy.sparse.csgraph import depth_first_order
>>> graph = [ ... [0, 1, 2, 0], ... [0, 0, 0, 1], ... [2, 0, 0, 3], ... [0, 0, 0, 0] ... ] >>> graph = csr_matrix(graph) >>> print(graph) (0, 1) 1 (0, 2) 2 (1, 3) 1 (2, 0) 2 (2, 3) 3
>>> depth_first_order(graph,0) (array([0, 1, 3, 2], dtype=int32), array([-9999, 0, 0, 1], dtype=int32))
相關用法
- Python SciPy csgraph.depth_first_tree用法及代碼示例
- Python SciPy csgraph.dijkstra用法及代碼示例
- Python SciPy csgraph.csgraph_to_dense用法及代碼示例
- Python SciPy csgraph.min_weight_full_bipartite_matching用法及代碼示例
- Python SciPy csgraph.minimum_spanning_tree用法及代碼示例
- Python SciPy csgraph.breadth_first_order用法及代碼示例
- Python SciPy csgraph.connected_components用法及代碼示例
- Python SciPy csgraph.breadth_first_tree用法及代碼示例
- Python SciPy csgraph.csgraph_from_dense用法及代碼示例
- Python SciPy csgraph.floyd_warshall用法及代碼示例
- Python SciPy csgraph.bellman_ford用法及代碼示例
- Python SciPy csgraph.csgraph_to_masked用法及代碼示例
- Python SciPy csgraph.maximum_flow用法及代碼示例
- Python SciPy csgraph.csgraph_masked_from_dense用法及代碼示例
- Python SciPy csgraph.shortest_path用法及代碼示例
- Python SciPy csgraph.reconstruct_path用法及代碼示例
- Python SciPy csgraph.johnson用法及代碼示例
- Python SciPy csgraph.maximum_bipartite_matching用法及代碼示例
- Python SciPy csgraph.csgraph_from_masked用法及代碼示例
- Python SciPy csgraph.construct_dist_matrix用法及代碼示例
- Python SciPy csgraph.reverse_cuthill_mckee用法及代碼示例
- Python SciPy csgraph.laplacian用法及代碼示例
- Python SciPy csgraph.structural_rank用法及代碼示例
- Python SciPy csc_array.diagonal用法及代碼示例
- Python SciPy csc_matrix.nonzero用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.sparse.csgraph.depth_first_order。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。