Сортировать массив и поддерживает индекс - PullRequest
0 голосов
/ 27 марта 2019

Я пытаюсь получить наименьшую разницу в значении между предоставленным пользователем значением и элементом массива индекса. Например, пользователь предоставил 90. Получите разницу между 90 и значением «емкости».

// Output of the $unallocated array variable     
array (size=2)
  0 => 
    object(stdClass)[28]
      public 'id' => string '9' (length=1)
      public 'name' => string 'ICT LR B' (length=8)
      public 'capacity' => string '200' (length=3)
  1 => 
    object(stdClass)[29]
      public 'id' => string '8' (length=1)
      public 'name' => string 'ICT LR A' (length=8)
      public 'capacity' => string '120' (length=3)

// Code Snippet    
$num_stud = $this->input->post('total_student');
foreach ($unallocated as $un) 
{
    if($num_stud < $un->capacity){
        $difference[] = $un->capacity - $num_stud;
        $hl[] = $un->id; 
    }
}

asort($difference);
$arrlength = count($difference);
for($x = 0; $x < $arrlength; $x++) {
   $rec[] = array(
       'difference' => $difference[$x],
       'hall_id' => $hl[$x]
   );
}

Сортируйте переменную массива $ разности в порядке возрастания, но я хочу иметь возможность определить, какой элемент имеет эту особую разницу.

 // instead of having this  
 array (size=2)
  0 => 
      array (size=2)
      'difference' => int 100
      'hall_id' => string '9' (length=1)
  1 => 
      array (size=2)
      'difference' => int 20
      'hall_id' => string '8' (length=1)

// I want to have this. I want it to be sorted in the ascending order of the difference as 20 is less than 100 in the difference 
 array (size=2)
  0 => 
      array (size=2)
      'difference' => int 20
      'hall_id' => string '8' (length=1)
  1 => 
      array (size=2)
      'difference' => int 100
      'hall_id' => string '9' (length=1)

1 Ответ

0 голосов
/ 27 апреля 2019
public function cluster($doc=NULL){
$number_of_clusters = $_POST['num_clust'];
$initial_k_clusters = $this->algorithm_model->initial_k_clusters($number_of_clusters);

// $ clusters = $ this- >gorith_model-> all_clusters ();

$groups = array();
$i = 0;
foreach ($clusters as $cluster) {
$distances = array();
foreach ($initial_k_clusters as $centroid){ 
++$i;
$distance[$i] = abs($cluster['cluster'] - 
$centroid['cluster']);
array_push($distances, $distance[$i]);
}

$x = 0;
do{
$min = min($distances);
switch ($min) {
case $distances[$x]:
$groups[$x][]=$cluster['doc_id'];
break;
}
$x++;  
}while ($x < $number_of_clusters);
$x = 0;
unset($distances);}
...