Jump to content

word list algorithm


fooDigi

Recommended Posts

i have been racking me brain trying to find an effective way of doing this...

given a word list (20,000+) and a list of characters (about 5-10), how can i find all the words in the word list that use those characters only once...

 

so, example:

character_list = mlfrau

 

it would find:

stay,flu,arm,far,ram,fur,farm,maul,mural,armful

 

as long as they exist in the word list.

 

thanks for any help!

Link to comment
https://forums.phpfreaks.com/topic/92044-word-list-algorithm/
Share on other sites

thx sasa,

 

this will set me in the right direction. this is great, but this returns just "print". i change the "==" to "!=" and it returns "frr" and "mam", which is cool, cause only those letters exist in $char. but, i wish not to find words that use the letters twice. so "frr" would not be found, but "fr" would, so would "ma" but not "mam".

 

guess, i have a regular expressions book next to me, maybe i should read that. ;)

 

thx

Link to comment
https://forums.phpfreaks.com/topic/92044-word-list-algorithm/#findComment-474279
Share on other sites

condition

if (count($b[0]) == count(array_unique($b[0])) and count($b[0]) > 0)

means

1st part just unique characters

and

2nd part one or more character mach

just word 'print' mach both

if you want to mach word 'the' remove 2nd conditon (and count($b[0]) > 0)

Link to comment
https://forums.phpfreaks.com/topic/92044-word-list-algorithm/#findComment-474283
Share on other sites

what i mean is that the word 'frr' should not exist in 'mlfrau', cause the 'r' is used once already. i don't want to match the world 'the' cause none of those letters exist in 'mlfrau'. i want to match only words that have unique letters in 'mlfrau', if the following were real words in the master word list, i would like this result...

 

mlfrau

rau

ulm

far

mal

 

*edit

crap, i noticed in my first post, the word stay should not have been found. $%^&! hope that wasn't too confusing.

Link to comment
https://forums.phpfreaks.com/topic/92044-word-list-algorithm/#findComment-474286
Share on other sites

this works like i want it, from what i have tested.

 

<?php 
$char = 'mlfrau';
$word_list = 'frr,print,mam,the,ra,fratzl,rai,far,maul,maal,mail,ram,ramm,farm,farrm';
$a = explode(',',$word_list);

foreach ($a as $word){
preg_match_all("/[$word]/", $char, $b);

$check_word = '';
foreach($b[0] as $x)
	$check_word .= $x;

if(strlen($check_word) == strlen($word))
	echo $word."\n";
}
?>

 

this will output:

ra far maul ram farm

Link to comment
https://forums.phpfreaks.com/topic/92044-word-list-algorithm/#findComment-474300
Share on other sites

try

<?php 
$char = 'mlfraum';
$word_list = 'frr,print,mam,the,ra,fratzl,rai,far,maul,maal,mail,ram,ramm,farm,farrm';
$a = explode(',',$word_list);
$char = str_split($char);
sort($char);
$char ='/^'.implode('?',$char).'?$/';

foreach ($a as $word){
$word1 = str_split($word);
sort($word1);
$word1 =implode('',$word1);
if (preg_match($char, $word1)) echo $word;
}
?>

speed 10 000 words per sec

Link to comment
https://forums.phpfreaks.com/topic/92044-word-list-algorithm/#findComment-474355
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.