show/hide this revision's text 2 Extended after comment

My pseudo code:

  • Create a graph of nodes where each node represents a word
  • Create connections between all the nodes (every node connects to every other node). Each connection has a "value" which is the number of common characters.
  • Drop connections where the "value" is 0.
  • Walk the graph by preferring connections with the highest values. If you have two connections with the same value, try both recursively.
  • Store the output of a walk in a list along with the sum of the distance between the words in this particular result. I'm not 100% sure ATM if you can simply sum the connections you used. See for yourself.
  • From all outputs, chose the one with the highest value.

This problem is probably NP complete which means that the runtime of the algorithm will become unbearable as the dictionaries grow. Right now, I see only one way to optimize it: Cut the graph into several smaller graphs, run the code on each and then join the lists. The result won't be as perfect as when you try every permutation but the runtime will be much better and the final result might be "good enough".

[EDIT] Since this algorithm doesn't try every possible combination, it's quite possible to miss the perfect result. It's even possible to get caught in a local maximum. Say, you have a pair with a value of 7 but if you chose this pair, all other values drop to 1; if you didn't take this pair, most other values would be 2, giving a much better overall final result.

This algorithm trades perfection for speed. When trying every possible combination would take years, even with the fastest computer in the world, you must find some way to bound the runtime.

If the dictionaries are small, you can simply create every permutation and then select the best result. If they grow beyond a certain bound, you're doomed.

Another solution is to mix the two. Use the greedy algorithm to find "islands" which are probably pretty good and then use the "complete search" to sort the small islands.

show/hide this revision's text 1

My pseudo code:

  • Create a graph of nodes where each node represents a word
  • Create connections between all the nodes (every node connects to every other node). Each connection has a "value" which is the number of common characters.
  • Drop connections where the "value" is 0.
  • Walk the graph by preferring connections with the highest values. If you have two connections with the same value, try both recursively.
  • Store the output of a walk in a list along with the sum of the distance between the words in this particular result. I'm not 100% sure ATM if you can simply sum the connections you used. See for yourself.
  • From all outputs, chose the one with the highest value.

This problem is probably NP complete which means that the runtime of the algorithm will become unbearable as the dictionaries grow. Right now, I see only one way to optimize it: Cut the graph into several smaller graphs, run the code on each and then join the lists. The result won't be as perfect as when you try every permutation but the runtime will be much better and the final result might be "good enough".