북웜(Bookworm)은 아주 좋은 게임입니다. 모르신다면 앱 스토어에서 검색해 보세요. 항상 최고 점수를 받는 단어를 철자하는 프로그램을 PHP를 사용하여 작성했습니다.
fullwordlist.txt 파일이 너무 길어서 게시하지 않겠습니다. . 관심 있는 친구들은 온라인으로 검색해 보세요.
-
-
字符:
-
-
-
-
-
- < ;input type="text" value="" id="w6" name="w6" style="width:50px;">
-
-
-
-
-
-
-
-
- < ;input type="text" value="" id="w16" name="w16" style="width:50px;">
-
-
-
-
-
-
-
-
-
-
×分:
-
-
-
- <입력 유형 ="text" value="" id="v4" name="v4" style="width:50px;">
-
-
-
-
-
-
-
-
-
-
- <입력 유형= "text" value="" id="v16" name="v16" style="width:50px;">
-
-
-
-
-
-
-
-
-
-
-
- form>
-
-
- // 작성자: huangfeng爱吴佳旻
- if(empty($_POST)) die;
- // 接收并处理原始输入数据,w代表字符,v代表对应的分数
- $data = array();
- for($i=1;$i<=24;$i ){
- array_push($data, array('w' => strtoupper(trim($_POST['w'.$i])), 'v' => Trim($_POST['v'.$i]))));
- }
-
- // 去重以以便计算求和的分数
- $data_unduplicated = array();
- foreach ($data as $key => $value){
- $data_unduplicated[] = implode(',', $value);
- }
- $data_unduplicated = array_unique($data_unduplicated);
- }
- $data_주파수_result = array_count_values($data_주파수);
-
- // 将词汇表文件读入数组
- $words = file('./fullwordlist.txt', FILE_IGNORE_NEW_LINES);
-
- // 将词汇表전체부转成大写英文
- $words = array_map(function ($word){
- return strtoupper($word);
- }, $words);
-
- // 对每个单词进行频次判断
- $result = array();
- foreach ($words as $k => $word) {
- // 遇到含有'的单词,就略过
- if(strpos($word, "'") > 0) continue;
-
- // 对$word做字母拆解 ,判断每个字母的 Out现频次
- $word_arr = str_split($word);
- $word_arr_주파수 = array_count_values($word_arr);
- $pass = true;
- foreach ($word_arr_주파수는 $character => $주파수) {
- if(!array_key_exists($character, $data_주파수_result) || ($data_주파수_결과[$문자] < $주파수)) {
- $pass = false;
- }
- }
- // 对筛选出的$word进行求分数操작
- if($pass) {
- $word_value = 0;
- foreach ($word_arr as $wkey => $wchar) {
- foreach($data_unduplicated as $data_item) {
- $data_item = 폭발(',', $data_item);
- // var_dump($data_item); 배열 0 => 문자열 'A' (길이=1) 1 => 문자열 '3' (길이=1)
- if($wchar != $data_item[0]) continue;
- $word_value = $data_item[1];
- }
- }
- $ result[] = array('w' => $word, 'v' => $word_value);
- }
- }
-
- // 最后只选流分数最高的
- $k = 0;
- $highest = 0;
- foreach ($result as $key => $item) {
- if(intval($item['v']) >= $ 최고){
- $최고 = $item['v'];
- $k = $key;
- }
- }
-
- echo '가장 높은 점수를 받은 단어는 다음과 같습니다.' . $result[$k]['w'] '('.$result[$k]['v'].')'; ;
코드 복사
|