拼音输入法试验问题请教

2019-07-21 06:01发布

//获取匹配的拼音码表
//*strin,输入的字符串,形如:"726"
//**matchlist,输出的匹配表.
//返回值:[7],0,表示完全匹配;1,表示部分匹配(仅在没有完全匹配的时候才会出现)
//   [6:0],完全匹配的时候,表示完全匹配的拼音个数
//      部分匹配的时候,表示有效匹配的位数         
u8 get_matched_pymb(u8 *strin,py_index **matchlist)
{
 py_index *bestmatch;//最佳匹配
 u16 pyindex_len;
 u16 i;
 u8 temp,mcnt=0,bmcnt=0;
 bestmatch=(py_index*)&py_index3[0];//默认为a的匹配
 pyindex_len=sizeof(py_index3)/sizeof(py_index3[0]);//得到py索引表的大小.
 for(i=0;i<pyindex_len;i++)
 {
  temp=str_match(strin,(u8*)py_index3.py_input);
  if(temp)
  {
   if(temp==0XFF)matchlist[mcnt++]=(py_index*)&py_index3;
   else if(temp>bmcnt)//找最佳匹配
   {
    bmcnt=temp;
       bestmatch=(py_index*)&py_index3;//最好的匹配.
   }
  }
 }
 if(mcnt==0&&bmcnt)//没有完全匹配的结果,但是有部分匹配的结果
 {
  matchlist[0]=bestmatch;
  mcnt=bmcnt|0X80;  //返回部分匹配的有效位数
 }
 return mcnt;//返回匹配的个数
}

其中:bestmatch=(py_index*)&py_index3[0];//默认为a的匹配
的注释是不是错了,默认应该没匹配的吧py_index3[0]={"" ,"",(u8*)PY_mb_space}



友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。