当前位置: 编程技术>php
php权重计算方法代码分享
来源: 互联网 发布时间:2014-08-26
本文导语: 代码如下: 外部调用示例 代码如下:$aItems = array( 'chinaisbig', 'whichisnot', 'totalyrightforme',);$aTable = array( 'china,is|small', 'china,big|me', 'china,is|big,which|not,me', 'totaly|right,for,me',); $oWeight = new ttrie;$oWeight->newIte...
代码如下:
外部调用示例
代码如下:
$aItems = array(
'chinaisbig',
'whichisnot',
'totalyrightforme',
);
$aTable = array(
'china,is|small',
'china,big|me',
'china,is|big,which|not,me',
'totaly|right,for,me',
);
$oWeight = new ttrie;
$oWeight->newItems($aItems);
$aResult = $oWeight->newTable($aTable);