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

Can any one please let me know the algorithms that is used in traveling sites like makemytrip.com,cleartrip.com etc.. i know that its a graph problem and they calculate spanning tree..but i want a clear algorithm and different complexities involved in designing the algorithm.

can u please any url references where i could learn solving the graph based problems.

share|improve this question
These sites probably don't use an MST, since MSTs do not guarantee shortest paths between all points. But an interesting question nonetheless. – templatetypedef Feb 20 '11 at 9:10
Last I heard, itasoftware.com had a gigantic LISP system that is nearly magical; all sites just call into the ITA backend and slap their own interface on the results. Microsoft bought one of their clients, Google bought them. Go figure. :) – sarnold Feb 20 '11 at 9:21

2 Answers

Travelling sites wouldn't use minimum spanning trees but would usually use something like a dijkstra (search it up). Also, while dijkstra's algorithm is awesome, in real life situations, it isn't always practical and as such, most real-life path-finding algorithms are approximations.

share|improve this answer

Since this problem is ussually NP complete, the result might not be guaranteed to be the shortest path, depending of the size of the problem. That said:

If they plan from 1 city to another city via airlines/roads, they probably use a deterministic algorithms, such as A* search.

If they plan a round trip from city to city to city to ... to the home city (which is a traveling salesman problem), then they tend to use meta-heuristic algorithms, such as tabu search.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.