python实现查找最长公共子序列

 

#!/usr/bin/python
# -*- coding: UTF-8 -*-

worlds = ['fosh','fort','vista','fish','hish','hello','ohddad','abofa']
user_input = 'frt'

def find_longest_substring(world_a,world_b):
    """
    查找最长公共子序列函数
    """
    # 根据字符串长度生成矩阵
    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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值