python实现邻接矩阵转邻接表
生活随笔
收集整理的這篇文章主要介紹了
python实现邻接矩阵转邻接表
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
鄰接矩陣轉為鄰接表(字典的形式輸出)
# def matrix2table(martrix):
# """輸入圖的鄰接矩陣,輸出鄰接表"""
# result = defaultdict(set)
# N = len(matrix)
# for i in range(N):
# tmp1 = {}
# for j in range(N):
# if (matrix[i][j] and (i != j)):
# result[i].add(j)
# return result
#
# adj_lists = defaultdict(set)
# matrix = data.adj????????# 鄰接矩陣
# ?matrix = [[0, 1, 0, 1, 0],[1, 0, 1, 0, 1],[0, 1, 0, 1, 0],[1, 0, 1, 0, 0],[0, 1, 1, 0, 0]]
# adj_lists = matrix2table(matrix.tolist())
# print("matrix: ", matrix)
# print("adj_lists: ", adj_lists)
總結
以上是生活随笔為你收集整理的python实现邻接矩阵转邻接表的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Codeforces 360E 贪心 最
- 下一篇: win7旗舰版上装VS2010错误(提示