<?php
namespace Test; use Iterator;
use ArrayAccess;
use Exception; // 叶子结点或者连接结点的基类
class HuffmanBase
{
protected $weight; // 权重
protected $parent; public function setParent($parent)
{
$this->parent = $parent;
} public function getWeight()
{
return $this->weight;
} public function getParent()
{
return $this->parent;
}
} // 叶子结点
class HuffmanLeafNode extends HuffmanBase
{
protected $code; // 需要编码的字母 public function __construct($weight,$code,$parent = null)
{
if(!is_int($weight) || $weight <= 0 || is_null($code))
{
throw new Exception('Param is error!' .__FILE__.__LINE__);
}
$this->weight = abs($weight);
$this->code = $code;
$this->parent = $parent;
} public function getCode()
{
return $this->code;
}
} // 连接结点
class HuffmanJoinNode extends HuffmanBase
{
protected $lChild;
protected $rChild; public function __construct($weight = 0,$lChild = null,$rChild = null)
{
$this->weight = $weight;
$this->rChild = $rChild;
$this->lChild = $lChild;
} public function setWeight($leftWeight,$rightWeight)
{
if(!is_int($this->rChild) || !is_int($this->lChild))
{
throw new \Exception("Please initialize the left child or the right child!\n");
}
$this->weight = $leftWeight + $rightWeight;
} public function setChild($child,$leftOrRight)
{
if('left' == $leftOrRight)
{
$this->lChild = $child;
}
elseif('right' == $leftOrRight)
{
$this->rChild = $child;
}
else
{
throw new \Exception("Please input 'left' or 'right' to leftOrRight!\n");
}
} public function getChild($leftOrRight)
{
if('left' == $leftOrRight)
{
return $this->lChild;
}
elseif('right' == $leftOrRight)
{
return $this->rChild;
}
else
{
throw new \Exception("Please input 'left' or 'right' to leftOrRight!\n");
}
}
} // 哈夫曼树
class HuffmanTree implements \ArrayAccess,\Iterator
{
protected $nodes = array(); public function &getAllNodes()
{
return $this->nodes;
} public function offsetExists($offset)
{
// TODO: Implement offsetExists() method.
return isset($this->nodes[$offset]);
} public function offsetGet($offset)
{
// TODO: Implement offsetGet() method.
if(isset($this->nodes[$offset]))
{
return $this->nodes[$offset];
}
else
{
return null;
}
} public function offsetSet($offset,$value)
{
// TODO: Implement offsetSet() method.
if(!($value instanceof HuffmanBase))
{
throw new Exception('Param is error!' .__FILE__.__LINE__);
} if(is_null($offset))
{
$this->nodes[] = $value;
}
else
{
$this->nodes[$offset] = $value;
}
} public function offsetUnset($offset)
{
// TODO: Implement offsetUnset() method.
unset($this->nodes[$offset]);
} public function current()
{
// TODO: Implement current() method.
return current($this->nodes);
} public function key()
{
// TODO: Implement key() method.
return key($this->nodes);
} public function next()
{
// TODO: Implement next() method.
next($this->nodes);
} public function rewind()
{
// TODO: Implement rewind() method.
reset($this->nodes);
} public function valid()
{
// TODO: Implement valid() method.
return $this->offsetExists(key($this->nodes));
} public function length()
{
return count($this->nodes);
}
} // 从[$left,$right]区间选择parent=0并且weight最小的两个结点,其序号分别为$minNode1,$minNode2;
function selectTwoMinWeightNode(HuffmanTree &$huffmanTree,$left,$right,&$minNode1,&$minNode2)
{
$left = abs($left);
$right = abs($right); if(!is_int($left) || !is_int($right) || $left == $right)
{
throw new Exception('Param is error!' .__FILE__.__LINE__);
} if($left > $right)
{
$tmp = $left;
$left = $right;
$right = $tmp;
} $nodes = $huffmanTree->getAllNodes();
if(!isset($nodes[$right]))
{
throw new Exception('Over the array index!'.__FILE__.__LINE__);
} $tmp = array();
for($i = $left;$i <= $right; ++$i)
{
$huffmanNode = $huffmanTree[$i];
if(!is_null($huffmanNode->getParent()))
{
continue;
}
$tmp[$i] = $huffmanNode->getWeight();
} if(count($tmp) <= 1)
{
throw new Exception('Not enough number!'.__FILE__.__LINE__);
}
asort($tmp,SORT_NUMERIC);
$t = array_keys($tmp);
$minNode1 = $t[0];
$minNode2 = $t[1];
} // (编码 => 权重)
$nodes = array('A' => 3, 'B' => 4, 'C' => 7, 'D' => 10); $huffmanTree = new HuffmanTree(); // 初始化哈夫曼树的叶子结点
foreach($nodes as $code => $weight)
{
$huffmanNode = new HuffmanLeafNode($weight,$code);
$huffmanTree[] = $huffmanNode;
} $leafCount = $huffmanTree->length(); // 叶子结点的数量(大于1的值)
$nodeCount = 2 * $leafCount -1 ; // 哈夫曼树结点的数量 // 初始化哈夫曼树的非叶子结点(如果编译器未优化,--$i应该是比$i++效率高点的)
for($i = $nodeCount - $leafCount;$i >= 1; --$i)
{
$huffmanNode = new HuffmanJoinNode();
$huffmanTree[] = $huffmanNode;
} // 建立哈夫曼树
for($i = $leafCount;$i < $nodeCount; ++$i)
{
selectTwoMinWeightNode($huffmanTree,0,$i-1,$minNode1,$minNode2);
$huffmanNode1 = $huffmanTree[$minNode1];
$huffmanNode2 = $huffmanTree[$minNode2];
$huffmanNode1->setParent($i);
$huffmanNode2->setParent($i);
$huffmanTree[$i]->setChild($minNode1,'left');
$huffmanTree[$i]->setChild($minNode2,'right');
$huffmanTree[$i]->setWeight($huffmanNode1->getWeight(),$huffmanNode2->getWeight());
} // 从叶子到根的遍历,得到字母的编码
$huffmanCode = array();
for($i = 0;$i < $leafCount; ++$i)
{
$leafNode = $huffmanTree[$i];
$code = $leafNode->getCode();
$reverseCode = array();
for($c = $i,$pi = $leafNode->getParent();!is_null($pi);$pi = $huffmanTree[$pi]->getParent())
{
$huffmanNode = $huffmanTree[$pi];
if($huffmanNode->getChild('left') === $c)
{
$reverseCode[] = 0;
}
elseif($huffmanNode->getChild('right') === $c)
{
$reverseCode[] = 1;
}
else
{
throw new Exception('Something error happened!' .__FILE__.__LINE__);
}
$c = $pi;
}
$huffmanCode[$code] = array_reverse($reverseCode);
} foreach($huffmanCode as $key => $value)
{
$s = implode(',',$value);
echo $key. " : " .$s ."\n";
}

运行结果:

运行环境:

ArrayAccess  :(PHP 5 >= 5.0.0, PHP 7)

PHP 哈夫曼的实现的更多相关文章

  1. 哈夫曼(huffman)树和哈夫曼编码

    哈夫曼树 哈夫曼树也叫最优二叉树(哈夫曼树) 问题:什么是哈夫曼树? 例:将学生的百分制成绩转换为五分制成绩:≥90 分: A,80-89分: B,70-79分: C,60-69分: D,<60 ...

  2. (哈夫曼树)HuffmanTree的java实现

    参考自:http://blog.csdn.net/jdhanhua/article/details/6621026 哈夫曼树 哈夫曼树(霍夫曼树)又称为最优树. 1.路径和路径长度在一棵树中,从一个结 ...

  3. 数据结构之C语言实现哈夫曼树

    1.基本概念 a.路径和路径长度 若在一棵树中存在着一个结点序列 k1,k2,……,kj, 使得 ki是ki+1 的双亲(1<=i<j),则称此结点序列是从 k1 到 kj 的路径. 从 ...

  4. (转载)哈夫曼编码(Huffman)

    转载自:click here 1.哈夫曼编码的起源: 哈夫曼编码是 1952 年由 David A. Huffman 提出的一种无损数据压缩的编码算法.哈夫曼编码先统计出每种字母在字符串里出现的频率, ...

  5. C++哈夫曼树编码和译码的实现

    一.背景介绍: 给定n个权值作为n个叶子结点,构造一棵二叉树,若带权路径长度达到最小,称这样的二叉树为最优二叉树,也称为哈夫曼树(Huffman Tree).哈夫曼树是带权路径长度最短的树,权值较大的 ...

  6. 数据结构图文解析之:哈夫曼树与哈夫曼编码详解及C++模板实现

    0. 数据结构图文解析系列 数据结构系列文章 数据结构图文解析之:数组.单链表.双链表介绍及C++模板实现 数据结构图文解析之:栈的简介及C++模板实现 数据结构图文解析之:队列详解与C++模板实现 ...

  7. HDU2527 哈夫曼编码

    Safe Or Unsafe Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  8. *HDU1053 哈夫曼编码

    Entropy Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Sub ...

  9. YTU 3027: 哈夫曼编码

    原文链接:https://www.dreamwings.cn/ytu3027/2899.html 3027: 哈夫曼编码 时间限制: 1 Sec  内存限制: 128 MB 提交: 2  解决: 2 ...

  10. 哈夫曼树---POJ3253

    http://poj.org/problem?id=3253 这就是 最典型的哈夫曼树的题型,我们就根据这道题学习一下哈夫曼树 这是最开始我们把21据下来之后我们据下8,然后再据下5得到34,可以看出 ...

随机推荐

  1. Winform中设置ZedGraph曲线图的水平与竖直参考线

    场景 Winforn中设置ZedGraph曲线图的属性.坐标轴属性.刻度属性: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/10 ...

  2. mysql ER图

        ER 图 ER图也被称为实体-联系图,提供了表示实体类型.属性和联系的方法,下图就是典型的一张ER图. ER图主要由四个成分构成: 1 实体 实体是客观世界中存在的各种事物,或者某个抽象事件, ...

  3. Linux 笔记 - 第五章 Linux 用户与用户组管理

    博客地址:http://www.moonxy.com Linux 是一个多用户的操作系统,在日常的使用中,从安全角度考虑,应该尽量避免直接使用 root 用户登录,而使用普通用户. 1. 关于用户 u ...

  4. Java使用Optional与Stream来取代if判空逻辑(JDK8以上)

    Java使用Optional与Stream来取代if判空逻辑(JDK8以上) 通过本文你可以用非常简短的代码替代业务逻辑中的判null校验,并且很容易的在出现空指针的时候进行打日志或其他操作. 注:如 ...

  5. elasticsearch document的索引过程分析

    elasticsearch专栏:https://www.cnblogs.com/hello-shf/category/1550315.html 一.预备知识 1.1.索引不可变 看到这篇文章相信大家都 ...

  6. ECSHOP完美解决Deprecated: preg_replace()报错的问题

    随着PHP5.5 的普及,ECSHOP系统又爆出了新的错误.PHP发展到PHP5.5版本以后,有了很多细微的变化.而ECSHOP官方更新又太慢,发现这些问题后也不及时升级,导致用户安装使用过程中错误百 ...

  7. JAVA线程基础概念及使用

    一.线程和进程的区别 在操作系统中所有运行的任务通常对应一个进程,进程是系统进行资源分配和调度的一个独立单位.线程是进程的组成部分,一个进程最少包含一个线程.并发和并行的区别是,并发指的在同一时刻内, ...

  8. Spring Cloud 初认识

    Spring Cloud是一个继承了众多开源的框架,其利用了Springboot开发的便利性来实现分布式服务功能,是一套开放.易部署.易维护的分布式开发工具包,而且有成熟的社区且社区活跃度很高.Spr ...

  9. Java8新特性——接口默认方法

    Java 8 新增了接口的默认方法. 简单说,默认方法就是接口可以有实现方法,而且不需要实现类去实现其方法. 我们只需在方法名前面加个default关键字即可实现默认方法. 为什么要有这个特性? 首先 ...

  10. openstack问题记录

    先去查看对应的日志:/var/log/,再来排查错误 1.实例处于错误状态 解决办法: 1.使用openstack hypervisor list查看 2.然后openstack hypervisor ...