字母易位词的判断

方法一:枚举法

def anagramSolution1(s1,s2):
    if len(s1) != len(s2):
        return False

    alist = list(s2)   #python中字符串不可改变,复制到一个新的列表中

    pos1 = 0
    stillOK = True

    while pos1 < len(s1) and stillOK:
        pos2 = 0
        found = False
        while pos2 < len(alist) and not found:
            if s1[pos1] == alist[pos2]:
                found = True
            else:
                pos2 = pos2 + 1

        if found:
                alist[pos2] = None
        else:
                stillOK = False
                break

        pos1 = pos1 + 1
    return stillOK

print(anagramSolution1('abcd','dcba'))

方法二:先排序,再对比字符串

#此种算法的复杂度即为O(n*logn+n),为O(n*logn)
def anagramSolution2(s1,s2):
    if len(s1) != len(s2):
        return False

    alist1 = list(s1)
    alist2 = list(s2)

    alist1.sort()
    alist2.sort()

    pos = 0
    matches = True

    while pos < len(s1) and matches:
        if alist1[pos]==alist2[pos]:
            pos = pos + 1
        else:
            matches = False
            break

    return matches

# print(anagramSolution2('abcde','edcba'))

方法三:设置26个计数器,然后判断对应位置的计数是否相等

# 我们可以为字符串s1和s2分别设置26个计数器,然后判断这对应位置的计数是否相等
# 如果对应计数完全相等,则为字母易位词。
# 总操作次数为T(N)=2n+26,其数量级为O(n)。需要比前两种更多的储存空间
def anagramSulutions3(s1,s2):
    c1 = [0] * 26
    c2 = [0] * 26
    for i in range(len(s1)):
        pos = ord(s1[i]) - ord('a') #ord将字母转换成对应的ASCII码
        c1[pos] = c1[pos] + 1
        print(c1)
    print('-' * 30)
    for i in range(len(s2)):
        pos = ord(s2[i]) - ord('a')
        c2[pos] = c2[pos] + 1
        print(c2)
    print('-' * 30)
    print(c1,c2)
    j = 0
    stillOK = True
    while j <26 and stillOK:
        if c1[j] == c2[j]:
            j += 1
        else:
            stillOK = False
    return stillOK


print(anagramSulutions3('abcde','bcade'))

方法三结果方法三结果图

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值