python实现查找最长公共子序列
2019-07-24 09:24:05来源:博客园 阅读 ()
直接上代码
#!/usr/bin/python # -*- coding: UTF-8 -*- worlds = ['fosh','fort','vista','fish','hish','hello','ohddad','abofaboca321ADFlloaha5shcdf'] user_input = 'frt' def find_longest_substring(world_a,world_b): """ 查找最长公共子序列函数 实现公式伪代码 if word_a[i] == word_b[j]: matrix[i][j] = matrix[i-1][j-1] + 1 else: matrix[i][j] = max(matrix[i-1][j],matrix[i][j-1]) """ # 生成矩阵 matrix = [[0 for i in range(len(world_a))] for j in range(len(world_b))] for i in range(len(world_b)): for j in range(len(world_a)): if world_b[i] == world_a[j]: if j != 0: matrix[i][j] = matrix[i-1][j-1] + 1 else: matrix[i][j] = matrix[i][j] + 1 else: matrix[i][j] = max(matrix[i-1][j],matrix[i][j-1]) return matrix[-1][-1] longest_substring = 0 best_match = {}
for world_a in worlds: number = find_longest_substring(world_a,user_input) if number >= longest_substring: if number == longest_substring: best_match[world_a] = number else: best_match = {} best_match[world_a] = number longest_substring = number for key in best_match: print "%s与%s,相似度:%.2f%%" % (user_input,key,best_match[key] / float(len(key))*100) # find_longest_substring(user_input,world_a)
原文链接:https://www.cnblogs.com/tanghaiyong/p/11191624.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:python 线程(一)理论部分
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash