- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
拥有一个包含Graph G
邻接列表的文件,例如:
0 -> 13,16,20,22,4,5
1 -> 12,13,16,17,19,22,23,24,25,3,4
10 -> 13,14,17,20,23,24
11 -> 12,19,20,22,23
12 -> 15,20,24
13 -> 20,21,22
15 -> 23
17 -> 25
19 -> 20,25
2 -> 16,19,3,7
20 -> 22,23
21 -> 22,23,24
22 -> 25
24 -> 25
3 -> 15,21,4
4 -> 10,12,14,15,16,17,18,19,21,23,5
5 -> 11,16,17,20,23,8,9
6 -> 12,14,18,22
7 -> 14,17,22
8 -> 21,24
9 -> 12,14
我想得到它的拓扑排序,Graph G
是一个有向无环图。
首先我想解析txt文件并将所有内容放入字典中。但是我遇到了一些问题,首先在读取文件时我丢失了一些东西,我错过了 ->
之后的第一个元素:
f = open('topo.txt', 'r')
line_list = f.readlines()
G = {int(line.split('->')[0]): [int(val) for val in line.split(',')[1:] if val] for line in line_list if line}
我会得到:
('G:', {0: [16, 20, 22, 4, 5], 1: [13, 16, 17, 19, 22, 23, 24, 25, 3, 4], 2: [19, 3, 7], 3: [21, 4], 4: [12, 14, 15, 16, 17, 18, 19, 21, 23, 5], 5: [16, 17, 20, 23, 8, 9], 6: [14, 18, 22], 7: [17, 22], 8: [24], 9: [14], 10: [14, 17, 20, 23, 24], 11: [19, 20, 22, 23], 12: [20, 24], 13: [21, 22], 15: [], 17: [], 19: [25], 20: [23], 21: [23, 24], 22: [], 24: []})
[16, 20, 22, 4, 5]
对于每一行,我都缺少一个元素,例如 0 是:[13, 16, 20, 22, 4, 5]
不是 [16, 20, 22, 4, 5]
它错过了 13
然后当使用函数dfs
时出现错误:
for v in G[s]: # for every edge (s, v) KeyError: 16
"""Performs a depth first search in graph G starting from vertex s
Input: G - the input graph in the adjacency list representation via a dictionary
s - the starting vertex
explored - a set of explored vertices
distance - a dictionary representing the topological order of the vertices
current_label - the current order of the topological order, disguised as a mutable list"""
def dfs(G, s, explored, distance, current_label):
explored.add(s)
#print G[s]
for v in G[s]: # for every edge (s, v)
if v not in explored:
dfs(G, v, explored, distance, current_label)
distance[current_label[0]] = s
current_label[0] -= 1
"""Performs and outputs a topological sort of graph G using dfs
Input: G - the input graph in the adjacency list representation via a dictionary
distance - a dictionary representing the topological order of the vertices"""
def topological_sort(G, distance):
explored = set()
current_label = [len(G)]
for v in G.keys():
if v not in explored:
dfs(G, v, explored, distance, current_label)
def main():
f = open('topo.txt', 'r')
line_list = f.readlines()
G = {int(line.split('->')[0]): [int(val) for val in line.split(',')[1:] if val] for line in line_list if line}
print("G:", G)
distance = dict()
topological_sort(G, distance)
topo = iter(sorted(distance.items()))
print("A topological order of G is:")
for _, vertex in topo:
print( vertex + " ")
print()
if __name__ == '__main__':
main()
正确的代码是什么样的?输出应该是
1, 0, 2, 6, 3, 7, 4, 5, 18, 10, 11, 16, 8, 9, 13, 17, 19, 12, 14, 21, 15, 20, 24, 23, 22, 25
最佳答案
line.split(',')[1:]
在 0 -> 13,16,20,22,4,5
上运行时采用部分 16,20,22,4,5
这不是你想要的。它应该是 line.split('->')[1].split(',')
。我个人会更明确地编写此内容以避免双重 .split('->')
调用:
def parse_graph(lines):
G = dict()
for line in lines:
left, right = line.split('->')
G[int(left)] = [int(val) for val in right.split(',')]
return G
...
G = parse_graph(line_list)
接下来,由于并非每个顶点都在 G
中作为键,因此您应该在 dfs
中添加以下行:
#dfs
...
if s in G: #add this
for v in G[s]: # for every edge (s, v)
if v not in explored:
dfs(G, v, explored, distance, current_label, l)
...
#
最后,将 print( vertex + "")
更改为 print( str(vertex), end=' ')
。剩下的好像还好。
您可能需要考虑的另一件事是,不必跟踪两个参数current_label
、距离
,您可以只保留一个列表顶点
>,可以说,它保留了访问过的顶点的顺序。所以改为
distance[current_label[0]] = s
current_label[0] -= 1
你可以有
vertices.append(s)
效果是一样的。然而,最后,您应该打印 reversed(vertices)
这将是您的拓扑顺序。
关于python - 从邻接表中获取图的拓扑顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32857997/
我正在创建一个有效的突变,但我不确定它是否按照我认为的方式工作。但是,我想知道执行顺序是什么? 异步 从上到下同步 同步随机顺序 其他 我想确保在执行插入/更新插入之前从表中删除某些项目。使用以下突变
如何更改规则中的前提顺序? 例如,在伊莎贝尔的自然演绎规则中: mp: ?P ⟶ ?Q ⟹ ?P ⟹ ?Q 我们可以将顺序更改为: ?P ⟹ ?P ⟶ ?Q ⟹ ?Q 我可以用 rev_mp或者定义一
关闭。这个问题需要details or clarity .它目前不接受答案。 想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题. 8年前关闭。 Improve thi
我正在使用 Hibernate 3.2,并使用标准来构建查询。我想为多对一关联添加和“排序”,但我不知道如何做到这一点。 Hibernate 查询最终看起来像这样,我猜: select t1.a, t
我正在开发一个项目,但无法让我的 javascript 按顺序工作。我知道 javascript 可以并行执行任务,因此当您向不响应的服务器发出请求时,它不会被卡住。这有它的优点和缺点。就我而言,这是
在下面的代码中,我认为f1 > f2 > f3是调用顺序,但是仅f1被调用。如何获得依次调用的3个函数? 我已经将以下内容添加到main函数中,它可以按预期工作,但是我想知道是否还有其他确定的方法可以
我有一个如下所示的对象数组: [{ "id": 1, "Size": 90, "Maturity": 24, }, { "id": 2, "S
这是征求意见和要求的请求。我是Docker的新手。 我想要一个用于Python项目的生产和开发容器(可能也进行单元测试)。我的搜索指向多阶段Dockerfile(以及运行它们的多个docker-com
我想知道解决以下问题的有效方法是什么: 假设我在组 1 中有三个字符,在组 2 中有两个字符: group_1 = c("X", "Y", "Z") group_2 = c("A", "B") 显然,
在 Cordova 网站上,您可以看到一长串按字母顺序排列的钩子(Hook)列表,但它们触发和执行的正确顺序是什么? 我正在尝试在构建/编译之前将 cordova.js 脚本添加到 index.htm
我想知道解决以下问题的有效方法是什么: 假设我在组 1 中有三个字符,在组 2 中有两个字符: group_1 = c("X", "Y", "Z") group_2 = c("A", "B") 显然,
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 9 年前。 这是我的一个练习的代码, public class RockTest { public static void main(
我使用 HashMap 来存储一些数据,但每当新数据保存到 HashMap 或旧数据移出 HashMap 时,我都需要将其保持升序。但是hashmap本身不支持顺序,我可以使用什么数据结构来支持顺序?
我想创建一个序列,当星期几与函数参数中的日期相同时,它会返回所有年份的结果(例如:自开始日期起,2 月 12 日为星期日的所有年份)。 let myDate (dw:System.DayOfWeek)
我有一个包含许多元素的 Xelement。 我有以下代码来对它们进行排序: var calculation = from y in x.Elements("row")
假设我有: 在 javacript 文件中,我为类按钮和 ID 名称定义了点击操作,例如: $("#name").click(function(event){ alert("hi"); }) $
我有一个包含 2 个 subview 的 View - collectionView 和自定义 View 。我想设置一个操作在布置 2 个 View 后运行,但layoutSubViews 运行了两次
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 2年前关闭。 Improve this questi
我想知道 C++ 中是否有内置方法来比较两个双向迭代器的顺序。例如,我有一个 Sum 函数来计算同一列表中 2 个迭代器之间的总和: double Sum(std::list::const_itera
在 MySQL 中,这两个查询之间有区别吗? SELECT * FROM .... ORDER BY Created,Id DESC 和 SELECT * FROM .... ORDER BY Cre
我是一名优秀的程序员,十分优秀!