我想为遗传算法随机分配80 * 13位数字,其中80是popsize,13是dna大小。我试图在二维数组上获取范围值的索引。从1-13进行随机整型,没有重复,我的意思是80行13列为2d。像这样
$arr = [0][0]; //this is output will be same with the table value in row1 col1
$arr = [0][1]; //this is output will be same with the table value in row1 col2
...
$arr = [0][12]; //this is output will be same with the table value in row2 col1
$arr = [1][1]; //this is output will be same with the table value in row2 col2
..
我有这样的代码。
<?php
function randomGen($min, $max) {
$numbers = range($min, $max);
shuffle($numbers);
return array_slice($numbers, 0);
}
?>
<table>
<tr>
<th rowspan="2">Kromosom ke-</th>
<th colspan="13">Stasiun Kerja</th>
</tr>
<tr>
<?php
for ($i=1; $i <= 13; $i++) {
?>
<th>
<?php echo $i;?>
</th>
<?php
}
?>
</tr>
<tr>
<?php
for($i = 0; $i < 80; $i++) {
$no = 1;
echo "<td> v".$no."</td>";
$arr[$i] = randomGen(1,13);
for ($j=0; $j <= 12; $j++) {
$arr[$j] = randomGen(1,13);
echo "<td>";
echo $arr[$i][$j];
echo "</td>";
}
echo "</td><tr>";
$no++;
}
// print_r($arr[0][0].' '); // for see the value is same or not
?>
当我尝试打印$ arr [0] [0]时,多数民众赞成在值与row1 col1中的表不同。
有什么想法吗?
更新!
该问题的最佳解决方案是Rainmx93的回答,那就对我有用。非常感谢您
答案 0 :(得分:0)
在第一个for循环中,您已经生成了多维数组,但是现在在第二个循环中,您覆盖了每次迭代中的所有数组元素,您需要删除该第二个函数调用。 您的代码应如下所示:
for($i = 0; $i < 80; $i++) {
$no = 1;
echo "<td> v".$no."</td>";
$arr[$i] = randomGen(1,13);
for ($j=0; $j <= 12; $j++) {
echo "<td>";
echo $arr[$i][$j];
echo "</td>";
}
echo "</td><tr>";
$no++;
}