Mojito
Torrell Burt
 
 
No information given.
Currently Online
Comments
Ben 5 Aug, 2023 @ 2:09am 
DFS(G):
for each vertex u in G.V
u.color = WHITE
u.pie = NIL
time = 0;
for each vertex u in G.V
if u.color == WHITE
DFS-VISIT(G, u)
noodles 5 Aug, 2023 @ 2:06am 
1 function Dijkstra(Graph, source):
2
3 for each vertex v in Graph.Vertices:
4 dist[v] ← INFINITY
5 prev[v] ← UNDEFINED
6 add v to Q
7 dist[source] ← 0
8
9 while Q is not empty:
10 u ← vertex in Q with min dist
11 remove u from Q
12
13 for each neighbor v of u still in Q:
14 alt ← dist + Graph.Edges(u, v)
15 if alt < dist[v]:
16 dist[v] ← alt
17 prev[v] ← u
18
19 return dist[], prev[]
noodles 5 Aug, 2023 @ 2:06am 
שמישהו יעצור אותו הוא צריך ללמוד אלגוריתמים