Home  >  Article  >  Backend Development  >  PHP 五 入门 分组算法(一)

PHP 五 入门 分组算法(一)

WBOY
WBOYOriginal
2016-06-13 11:00:17806browse

PHP 5 入门 分组算法(一)

把一组数据拆分为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 ?????????????? if (($j + 1) == $to) {
?????????????????? $strGroup .= $arryData[$j];
?????????????? } else {
?????????????????? $strGroup .= $arryData[$j].","; ???????????
?????????????? }
??????????? }

?

?????????? $startIndex = $endIndex;

???????? echo?"第 ".$i." 组数据::".$strGroup;?

}

?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn