Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to implement BiDirectional Djikstras and A* algorithms in MapReduce. I have already finished implementing Djikstras in MapReduce. I was wondering if anyone has came across the implementations for the same?

share|improve this question
What exactly are you having in mind? Please consider that (AFAIK) bi-directional search fails when it comes to weighted graph. – amit Nov 28 '12 at 9:19
This was for implementation of project.. analysis of road networks data.. – user1655719 Nov 29 '12 at 7:19

1 Answer

Few links to help out:

You could also take a look at Apache Giraph for doing large-scale graph processing tasks.

share|improve this answer
Also at Apache Hama hama.apache.org/hama_graph_tutorial.html which is faster. – Thomas Jungblut Nov 21 '12 at 11:43
I have already had a look at them... not what I wanted exactly... – user1655719 Nov 25 '12 at 20:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.