Heim >Backend-Entwicklung >PHP-Tutorial >PHP5入门之分组算法

PHP5入门之分组算法

WBOY
WBOYOriginal
2016-07-25 09:12:51897Durchsuche

例子,把一组数据拆分为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. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn