Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /Users/jordan/CLionProject/Dijkstras/cmake-build-debug/Dijkstras
  2.  
  3. Beginning Dijkstra's algorithm at origin node: Seattle
  4. Visiting Node: Seattle
  5. Chicago's shortest known distance from the origin is now: 2097
  6. San Francisco's shortest known distance from the origin is now: 807
  7. Denver's shortest known distance from the origin is now: 1331
  8. next closest edge from origin is: San Francisco
  9.  
  10. Visiting Node: San Francisco
  11. Los Angeles's shortest known distance from the origin is now: 1188
  12. next closest edge from origin is: Los Angeles
  13.  
  14. Visiting Node: Los Angeles
  15. Dallas's shortest known distance from the origin is now: 2623
  16. Kansas City's shortest known distance from the origin is now: 2851
  17. next closest edge from origin is: Denver
  18.  
  19. Visiting Node: Denver
  20. Kansas City's shortest known distance from the origin is now: 1930
  21. next closest edge from origin is: Kansas City
  22.  
  23. Visiting Node: Kansas City
  24. New York's shortest known distance from the origin is now: 3190
  25. Atlanta's shortest known distance from the origin is now: 2794
  26. Dallas's shortest known distance from the origin is now: 2426
  27. next closest edge from origin is: Chicago
  28.  
  29. Visiting Node: Chicago
  30. Boston's shortest known distance from the origin is now: 3080
  31. New York's shortest known distance from the origin is now: 2884
  32. next closest edge from origin is: Dallas
  33.  
  34. Visiting Node: Dallas
  35. Houston's shortest known distance from the origin is now: 2665
  36. next closest edge from origin is: Houston
  37.  
  38. Visiting Node: Houston
  39. Miami's shortest known distance from the origin is now: 3852
  40. next closest edge from origin is: Atlanta
  41.  
  42. Visiting Node: Atlanta
  43. Miami's shortest known distance from the origin is now: 3455
  44. next closest edge from origin is: New York
  45.  
  46. Visiting Node: New York
  47. next closest edge from origin is: Boston
  48.  
  49. Visiting Node: Boston
  50. next closest edge from origin is: Miami
  51.  
  52. Visiting Node: Miami
  53. next closest edge from origin is:
  54. Uh oh, we have already visited all of the adjacent neighbors of Miami, returning distances
  55. Distance from Seattle to Seattle is: 0
  56. Distance from Seattle to Chicago is: 2097
  57. Distance from Seattle to Boston is: 3080
  58. Distance from Seattle to New York is: 2884
  59. Distance from Seattle to Atlanta is: 2794
  60. Distance from Seattle to Miami is: 3455
  61. Distance from Seattle to Houston is: 2665
  62. Distance from Seattle to Dallas is: 2426
  63. Distance from Seattle to Los Angeles is: 1188
  64. Distance from Seattle to San Francisco is: 807
  65. Distance from Seattle to Denver is: 1331
  66. Distance from Seattle to Kansas City is: 1930
  67.  
  68. Process finished with exit code 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement