Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Dijkstras-algorithm/PicoLisp/dijkstras-algorithm-2.l
Normal file
11
Task/Dijkstras-algorithm/PicoLisp/dijkstras-algorithm-2.l
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
(neighbor 'a 'b 7)
|
||||
(neighbor 'a 'c 9)
|
||||
(neighbor 'a 'f 14)
|
||||
(neighbor 'b 'c 10)
|
||||
(neighbor 'b 'd 15)
|
||||
(neighbor 'c 'd 11)
|
||||
(neighbor 'c 'f 2)
|
||||
(neighbor 'd 'e 6)
|
||||
(neighbor 'e 'f 9)
|
||||
|
||||
(dijkstra 'a 'e)
|
||||
Loading…
Add table
Add a link
Reference in a new issue