Algorithm to compute LZ complexity measure. written in Python def KC_LZ(string): n=len(string) s = '0'+string c=1 l=1 i=0 k=1 k_max=1 stop=0 while stop==0: ...
確定! 回上一頁