dijkstra v0.4.1

Dijkstra's algorithm using a priority queue in Crystal

dijkstra

Crystal CI License

Dijkstra's algorithm using a priority queue in Crystal.

Dijkstra's algorithm is an algorithm for finding the shortest paths between nodes in a graph, which may represent, for example, road networks.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      dijkstra:
        github: geocrystal/dijkstra
    
  2. Run shards install

Usage

image

require "dijkstra"

gr = Dijkstra::Graph(Char).new(directed: true)

gr.add_edge('a', 'b', 7)
gr.add_edge('a', 'c', 9)
gr.add_edge('a', 'f', 14)
gr.add_edge('b', 'c', 10)
gr.add_edge('b', 'd', 15)
gr.add_edge('c', 'd', 11)
gr.add_edge('c', 'f', 2)
gr.add_edge('d', 'e', 6)
gr.add_edge('e', 'f', 9)

gr.shortest_path('a', 'e')
# => {26, ['a', 'c', 'd', 'e']}

# Directed   : a -> c(9) -> d(20) -> e(26)
# Undirected : a -> c(9) -> f(11) -> e(20)

Contributing

  1. Fork it (https://github.com/geocrystal/dijkstra/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

Repository

dijkstra

Owner
Statistic
  • 13
  • 0
  • 0
  • 0
  • 2
  • about 1 month ago
  • December 22, 2021
License

MIT License

Links
Synced at

Fri, 17 May 2024 19:58:43 GMT

Languages