gpt4 book ai didi

python - Python 中的邻接表创建

转载 作者:行者123 更新时间:2023-12-02 18:41:20 24 4
gpt4 key购买 nike

我正在尝试使用文本文件来实现邻接列表,其中包括:

0,1,5,1,3,1,0,3,1,1,0,4,7,1,0,4,0,4,1,6,5,1,1,3,6,3,4,1,5,2
6,0,1,4,1,5,3,0,4,5,1,4,7,4,2,0,3,5,4,1,3,1,7,3,2,1,1,6,5,0
4,6,0,3,1,6,1,6,2,1,2,2,7,7,7,1,1,1,6,1,1,5,1,6,1,6,1,2,5,3
6,4,5,0,4,1,6,1,6,2,1,0,6,5,1,3,0,1,0,7,5,1,6,6,3,2,3,1,6,4
4,2,0,6,0,0,4,6,3,3,3,6,7,0,1,4,5,7,3,4,2,3,7,7,1,4,6,6,4,5
0,2,6,1,6,0,3,3,6,1,4,4,3,5,0,7,3,7,3,7,0,2,7,1,7,2,5,7,1,0
7,4,5,2,2,2,0,3,1,4,0,6,0,3,7,1,4,6,6,6,6,1,1,6,1,3,3,3,2,0
2,0,1,3,1,7,2,0,3,0,5,2,3,4,1,7,1,0,1,5,3,6,1,2,2,0,5,2,4,0
7,3,2,6,2,6,6,1,0,1,0,6,2,3,0,5,2,1,7,0,0,3,3,0,1,1,1,4,6,1
4,1,7,4,2,5,7,1,4,0,4,3,6,1,6,6,1,0,4,0,0,0,2,2,4,2,6,0,7,5
1,1,2,1,0,5,1,6,2,6,0,4,4,6,2,5,1,1,0,0,5,0,1,1,2,5,1,3,6,6
0,3,7,3,1,4,6,1,2,7,1,0,4,4,1,1,6,7,1,5,0,4,0,4,6,3,1,4,1,0
1,4,7,0,4,1,5,3,1,0,0,6,0,0,5,0,3,5,4,7,2,1,4,7,3,1,5,7,3,2
3,1,5,3,3,4,2,4,4,5,1,7,6,0,3,3,0,0,7,7,3,5,6,7,0,2,1,0,2,2
3,1,4,4,1,5,1,5,6,2,6,4,5,7,0,0,4,1,3,7,5,1,0,4,5,4,5,1,1,0

认为每一行都以索引号作为名称,而不是 A,B,C.... 例如 0,1,5,1,3,1,0,3,1,1 ,0,4,7,1,0,4,0,4,1,6,5,1,1,3,6,3,4,1,5,2 是节点 06,0,1,4,1,5,3,0,4,5,1,4,7,4,2,0,3,5,4,1,3 ,1,7,3,2,1,1,6,5,0 是节点 1 等。这里的问题是我无法提取元素,因为之间的“,”每个元素。我试过这个:

a = np.array([])
with open("routers.txt") as f:
adj_list = list(f)
node_no = 0
node_list = list()

for i in adj_list:

node_list.append(node_no)
if i[node_no] != ",":
a = np.append(a, i[node_no])
node_no += 1
elif i[node_no] == ",":
break

但是它不能再继续了,当它看到“,”时它就停下来了。

最佳答案

您可以使用字典并将节点/索引存储为键,将行存储为值:

file = open("file.txt")
raw_f = file.readlines()
d = {}
for line in raw_f:
d|= {raw_f.index(line):line}


print(d)

例如:打印(d[0])将为您提供第一行作为输出:

 0,1,5,1,3,1,0,3,1,1,0,4,7,1,0,4,0,4,1,6,5,1,1,3,6,3,4,1,5,2

如果您想保留列表,请使用:

file = open("KontoN.txt")
raw_f = file.readlines()
res = []

for line in raw_f:
res.append(line)


print(res)

然后:

print(res[0])

会给你:

0,1,5,1,3,1,0,3,1,1,0,4,7,1,0,4,0,4,1,6,5,1,1,3,6,3,4,1,5,2

要删除数字之间的 ,,您可以使用替换,例如:

d|= {raw_f.index(line):line.replace(",","")}

或者第二种情况:

res.append(line.replace(",",""))

对于 d[0]res[0] 两种情况的输出为:

015131031104710404165113634152

我建议使用字典,因为查找时间比列表中的查找时间更快。

关于python - Python 中的邻接表创建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67975919/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com