brute force technique in language processing
|
Newbie Member
|
|
| 30Jan2007,17:41 | #1 |
|
wats this brute force technique in language processing using c??help me out..... :confused
|
|
Team Leader
|
![]() |
| 30Jan2007,18:35 | #2 |
|
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 |
|
Quote:
Originally Posted by pradeep |
|
Newbie Member
|
|
| 30Jan2007,21:01 | #4 |
|
hi.....and thanks a lot.....is there a program implementing this technique????
|
|
Team Leader
|
![]() |
| 31Jan2007,00:17 | #5 |
|
There is no generic brute-force program, i guess. What's your purpose?
|
|
Go4Expert Member
|
|
| 27May2008,15:36 | #6 |
|
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 |
|
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.
|

