brute force technique in language processing

Newbie Member
30Jan2007,17:41   #1
n_amuktha's Avatar
wats this brute force technique in language processing using c??help me out..... :confused
Team Leader
30Jan2007,18:35   #2
pradeep's Avatar
Brute-force search consists of systematically enumerating every possible solution of a problem until a solution is found, or all possible solutions have been exhausted. For example, an anagram problem can be solved by enumerating all possible combinations of words with the same number of letters as the desired phrase, and checking one by one whether the words make a valid anagram.
Newbie Member
30Jan2007,20:59   #3
n_amuktha's Avatar
Quote:
Originally Posted by pradeep
Brute-force search consists of systematically enumerating every possible solution of a problem until a solution is found, or all possible solutions have been exhausted. For example, an anagram problem can be solved by enumerating all possible combinations of words with the same number of letters as the desired phrase, and checking one by one whether the words make a valid anagram.
thanks a lot..is there any program to this technique??
Newbie Member
30Jan2007,21:01   #4
n_amuktha's Avatar
hi.....and thanks a lot.....is there a program implementing this technique????
Team Leader
31Jan2007,00:17   #5
pradeep's Avatar
There is no generic brute-force program, i guess. What's your purpose?
Go4Expert Member
27May2008,15:36   #6
wagmare's Avatar
hi.
i just joined an embedding company and they provide me some tasks and one of it is this anagram ... i try hard but unable so i kindly request u to help me find all the possible combinations of the inputed string.
Team Leader
28May2008,10:03   #7
pradeep's Avatar
For solving anagrams, you'll need a word list! Then you'll need to try all possible combinations of the inputed word against the word list.