欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP5入门之分组算法

程序员文章站 2024-02-12 17:15:04
...

例子,把一组数据拆分为6组输出算法。 代码:

  1. $groupCount = 6; //组数
  2. $userIdList = array(1, 2, 3, 4, 5, 6, 7, 8, 9,10);
  3. $size = count($userIdList );
  4. $sizeGroupPer = floor($size / $groupCount );//每组被分配的个数
  5. $criticalValue = $size % $groupCount ; //临界值
  6. $startIndex = 0;
  7. $endIndex = 0;
  8. for ($i = 0; $i if ($i $endIndex = $startIndex + $sizeGroupPer + 1;
  9. } else {
  10. $endIndex = $startIndex + $sizeGroupPer ;
  11. } // bbs.it-home.org
  12. $strGroup = "";
  13. for ($j = $startIndex ; $j if (($j + 1) == $to) {
  14. $strGroup .= $arryData[$j];
  15. } else {
  16. $strGroup .= $arryData[$j].",";
  17. }
  18. }
  19. $startIndex = $endIndex;
  20. echo "第 ".$i." 组数据::".$strGroup;
  21. }
复制代码