当前位置: 首页 > 工具软件 > mmake > 使用案例 >

makecode.m

燕靖
2023-12-01
%makecode源程序
function makecode(sc,codeword)
%Huffman符号减少树递归地去产生可变长度编码词

%全局函数存在于所有递归dan'yuan'z
global CODE
if isa(sc,'cell')%对于单元阵列节点
    makecode(sc{1},[codeword 0]);%1阶元素加0
    makecode(sc{2},[codeword 1]);%2阶元素加1
else
    CODE{sc}=char('0'+codeword)%对于数字编码创造一个字符编码串
end
 类似资料:

相关阅读

相关文章

相关问答