程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 計算排列組合的php代碼

計算排列組合的php代碼

編輯:PHP綜合

前些天因為業務需要寫了一段計算排列組合的代碼,今天整理了一下,以備後用

<?php
/**
* 要解決的數學問題 :算出C(a,1) * C(b, 1) * ... * C(n, 1)的組合情況,其中C(n, 1)代表從n個元素裡任意取一個元素
*
* 要解決的實際問題樣例:某年級有m個班級,每個班的人數不同,現在要從每個班裡抽選一個人組成一個小組,
* 由該小組來代表該年級參加學校的某次活動,請給出所有可能的組合
*/

/* ################################### 開始計算 ################################### */

/**
* 需要進行排列組合的數組
*
* 數組說明:該數組是一個二維數組,第一維索引代表班級編號,第二維索引代表學生編號
*/
$CombinList = array(1 => array("Student10", "Student11"),
2 => array("Student20", "Student21", "Student22"),
3 => array("Student30"),
4 => array("Student40", "Student41", "Student42", "Student43"));

/* 計算C(a,1) * C(b, 1) * ... * C(n, 1)的值 */
$CombineCount = 1;
foreach($CombinList as $Key => $Value)
{
$CombineCount *= count($Value);
}

$RepeatTime = $CombineCount;
foreach($CombinList as $ClassNo => $StudentList)
{
// $StudentList中的元素在拆分成組合後縱向出現的最大重復次數
$RepeatTime = $RepeatTime / count($StudentList);

$StartPosition = 1;

// 開始對每個班級的學生進行循環
foreach($StudentList as $Student)
{
$TempStartPosition = $StartPosition;

$SpaceCount = $CombineCount / count($StudentList) / $RepeatTime;

for($J = 1; $J <= $SpaceCount; $J ++)
{
for($I = 0; $I < $RepeatTime; $I ++)
{
$Result[$TempStartPosition + $I][$ClassNo] = $Student;
}
$TempStartPosition += $RepeatTime * count($StudentList);
}
$StartPosition += $RepeatTime;
}
}

/* 打印結果 */
echo "<pre>";
print_r($Result);
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved