mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-13 18:00:18 +08:00
Translate all code to English (#1836)
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
This commit is contained in:
@@ -15,24 +15,24 @@ from graph_adjacency_list import GraphAdjList
|
||||
|
||||
def graph_bfs(graph: GraphAdjList, start_vet: Vertex) -> list[Vertex]:
|
||||
"""Breadth-first traversal"""
|
||||
# Use adjacency list to represent the graph, to obtain all adjacent vertices of a specified vertex
|
||||
# Use adjacency list to represent the graph, in order to obtain all adjacent vertices of a specified vertex
|
||||
# Vertex traversal sequence
|
||||
res = []
|
||||
# Hash set, used to record visited vertices
|
||||
# Hash set for recording vertices that have been visited
|
||||
visited = set[Vertex]([start_vet])
|
||||
# Queue used to implement BFS
|
||||
que = deque[Vertex]([start_vet])
|
||||
# Starting from vertex vet, loop until all vertices are visited
|
||||
while len(que) > 0:
|
||||
vet = que.popleft() # Dequeue the vertex at the head of the queue
|
||||
vet = que.popleft() # Dequeue the front vertex
|
||||
res.append(vet) # Record visited vertex
|
||||
# Traverse all adjacent vertices of that vertex
|
||||
# Traverse all adjacent vertices of this vertex
|
||||
for adj_vet in graph.adj_list[vet]:
|
||||
if adj_vet in visited:
|
||||
continue # Skip already visited vertices
|
||||
continue # Skip vertices that have been visited
|
||||
que.append(adj_vet) # Only enqueue unvisited vertices
|
||||
visited.add(adj_vet) # Mark the vertex as visited
|
||||
# Return the vertex traversal sequence
|
||||
visited.add(adj_vet) # Mark this vertex as visited
|
||||
# Return vertex traversal sequence
|
||||
return res
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user