字符串近似匹配算法
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Example 11.9
P505
二、解决方案----动态规划
1、采用从右向左的比较方案。 2、子问题图中 (i,j)表示模板p1,…,pi在以tj为结尾 的正文T中的minimum-difference match.
Difference Table
D[i][j]= the minimum number of difference between p1,…,pi and a segment of T ending at tj.
三、例
P508 例11.11
四、练习
在“The BM agorithm is an algorism which does matching from right to left” 中寻找algorithm的2-difference匹配,并说 明理由
应用背景 1、字处理程序中的拼写检查 2、语音或文字识别 3、去传输噪声
一、问题与wk.baidu.com路
“Difference”
The differences can be any of the following three types. The name of the difference is the operation needed on T to bring it closer to P. revise: The corresponding characters in P and T are different. delete: T contains a character that is missing from P insert: T is missing a character that appear in P.
D[i][j]之间的关系
matchCost = D[i-1][j-1] if pi=tj revisedCost = D[i-1][j-1] +1 if pitj insertCost = D[i-1][j]+1 在tj后面插入pi deleteCost = D[i][j-1] +1 删除tj if pi=tj D[i][j]= D[i-1][j-1] Otherwise, D[i][j]= min(D[i-1][j-1] +1, D[i-1][j]+1, D[i][j-1]+1 )