PHP 5 グループ化アルゴリズムの概要 (1)
データセットを 6 セットの出力アルゴリズムに分割します
?
$groupCount = 6 //グループの数
$userIdList = array(1, 2, 3, 4, 5, 6, 7, 8, 9,10);
$size = count($userIdList );
$sizeGroupPer = Floor($size / $groupCount );//各グループに割り当てられたアイテムの数
$criticalValue = $size % $groupCount ; //クリティカル値
$startIndex = 0;
$endIndex = 0;
for ($i = 0; $i
?
????????? if ($i
????????????$endIndex = $startIndex + $sizeGroupPer + 1;
????????????} else {
???????????? $endIndex = $startIndex + $sizeGroupPer ;
????????????}
??
?????????$strGroup = "";?
????????? for ($j = $startIndex ; $j < $endIndex; $j++) {
???????????? if (( $j + 1) == $to) {
????????????$strGroup .= $arryData[$j]
? ??????? } else {
????????????$strGroup .= $arryData[$j].", "; ???????
???????????? }
????????? }
?
?????????$startIndex = $endIndex;
????????? echo?"".$i." グループ データ: ".$strGroup;?
}?