Been working on a brain-twisting palindrome problem, where I get a word list and need to generate palindromes from it, but I haven't managed to figure out how to handle it. It's just damn hard. I'm going to attempt meditation on the Wolf over the weekend and try to figure out what kind of problem just figuring out partial palindromes is. (As in, what kind of problem in big O notation.)
reverse? (Score:2)
I take it that it must be more complex than just doing reverse() on the string. Or did you mean anagram?
Re:reverse? (Score:5, Informative)
Taking the work list and making a reversed copy is only a small part of generation. For example, if you happen to choose the word "top" as a starting point, the reversed word list can be used to check possible tail ends for a palindrome ("t" doesn't work, "ot" doesn't work, "pot" is a candidate); but that is insufficient, since it doesn't find longer words that end in pot as additional candidates ("spot", "despot", "depot", "flowerpot", etc.). It also doesn't deal with the issues of deciding which words to try in the first place, ensuring that the resulting sentence is at least grammatically correct, if not meaningful, and so on.
Reply to This
Parent
Re:reverse? (Score:2, Insightful)
I'm trying to focus on the "what word to start with" part (because I think that the right beginning is probably the trick here), and for some reason or other I figured it might be a good idea to start with the pivot point and move outward from there. I'm starting to think that a process where possible pivot points are identified, and possible end points are identified, and then guessing ensues from there would be better than trying to grow off the pivot point
------------------------------
You are what you think.
R is for... (Score:2, Interesting)
---ict / Spoon