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

So this is one of the first programs I've written in Python. I'm trying to take a string, and output all strings that are real words. I have it completed (I need to find a reference file that contains more words) however it is not scalable as I cannot input more than 8 characters without Python taking a real long time to return something.

def lower_and_remove_spaces(fill_string):
    '''
    function takes a string of 2 or more characters and prints out all the permutations
    of words that the characters can make. 
    '''
    lower_string = ''

    for i in fill_string:
        if i.isalpha():
            lower_string += i.lower()

    return lower_string    

def fill_list(input_string):
   iter_list = []
   string_list = []
   this_string = lower_and_remove_spaces(input_string)
   for num in range(2,len(this_string)+1):
      iter_list.append(itertools.permutations(this_string,num))

   for iters in iter_list:
      for lists in iters:
         string_list.append(list(lists))

    return string_list

def word_list(string):
   string_list = fill_list(string)
   a_word_list = []
   a_string = ''
   for i in string_list:
      if not a_string == '':
         a_word_list.append(a_string)
      a_string = ''
      for y in i:
         a_string += y
    return a_word_list

I understand this jumps around a lot but I'm wondering what's a better way to do this so that it's scalable?

share|improve this question
2  
I have a feeling this would be better suited for codereview.stackexchange.com. – Elliot Bonneville Aug 13 '12 at 3:46
Where's the entry point? – Snakes and Coffee Aug 13 '12 at 3:50
1  
You do realize that itertools.permutations on something with a length of 8 will give you about 40k permutations. – Snakes and Coffee Aug 13 '12 at 3:53
FWIW - this really isn't considered scaling, it's more of an algorithm problem, I've changed the title and tags accordingly – dfb Aug 13 '12 at 3:58

closed as too localized by John3136, Elliot Bonneville, mgibsonbr, esaelPsnoroMoN, BlueRaja - Danny Pflughoeft Aug 13 '12 at 4:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Some quick ideas: making all permutations is going to O(n!), there's no way around this. Even if you optimize your code, you'll still run into a wall when n approaches larger numbers. If you have a dictionary of valid words, this problem is a bit different. Under a pathological input set ( your dictionary contains all permutations ) you can't do any better than this.

However, you can do the following

  1. Keep the dictionary of valid words in a prefix-tree
  2. Manually generate permutations recursively instead of via itertools.i.e., Choose a letter, start a word, recurse
  3. At each step, check if the prefix is valid, prune the search tree otherwise.

The performance of this will be much better in practice than O(n!)

If you're unfamiliar with prefix trees, here's a way to simulate the same thing with a Python hash

   def prefix_hash(list_o_words):
       ret = {}
       for word in list_o_words:
           for i in range(2,len(word)-1):
               ret[word[:i]] = 'prefix'  # this should check if it's a word first..
       ret[word] = 'word'

Ask questions if you need more help.

share|improve this answer

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