MIT Introduction to Algorithms 学习笔记(十)

Lecture 9: Hashing II: Table Doubling,Karp-Rabin

 

散列表应该有多大?

 

理想状态:

根据需要改变大小.

(重散列)Rehashing

MIT Introduction to Algorithms 学习笔记(十)_第1张图片 

增长:

MIT Introduction to Algorithms 学习笔记(十)_第2张图片

散列表长度成倍增长是个好选择.

 

删除:

MIT Introduction to Algorithms 学习笔记(十)_第3张图片

字符串匹配(String Matching)

Simple Algorithm:

MIT Introduction to Algorithms 学习笔记(十)_第4张图片

Karp-Rabin Algorithm:

MIT Introduction to Algorithms 学习笔记(十)_第5张图片

 python代码:

def karp_rabin(T, P):
    n = len(T)
    m = len(P)
    d = 256
    q = 101    
    h = d ** (m - 1) % q
    
    p = 0
    t = 0
    for i in range(m):
        p = (d*p + ord(P[i])) % q
        t = (d*t + ord(T[i])) % q
    
    for s in range(n - m + 1):
        print(s,p,t)
        if p == t and T[s:s+m] == P:
            return s
        if s < n - m:
            t = ( d * ( t - ord( T[s] ) * h ) + ord( T[s + m] ) ) % q

 

你可能感兴趣的:(python,hash,算法导论)