Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an array like so:

Array ( [0] => 0 [1] => 0 [2] => 0 );

there are 3 elements (3 integers) and I want them to increment from 0 to 36;

I understand that the best way for this is recursion because each element has to be checked to see if it is at the maximum ( 36 ) and if it is, it sets the last element to 0 and increments the previous.

so my array basically wants to go like:

Array ( [0] => 0 [1] => 0 [2] => 0 );
Array ( [0] => 0 [1] => 0 [2] => 1 );
Array ( [0] => 0 [1] => 0 [2] => 2 );
...
Array ( [0] => 0 [1] => 0 [2] => 36 );
Array ( [0] => 0 [1] => 1 [2] => 0 );
Array ( [0] => 0 [1] => 1 [2] => 1 );
....
Array ( [0] => 0 [1] => 1 [2] => 36 );
Array ( [0] => 0 [1] => 2 [2] => 0 );

ETC ETC ETC

But I've got no idea how to do this recursively!

However the solution also needs to work for 4 elements and 5 elements and 6 etc etc!

Can anybody give me some direction?

share|improve this question
2  
is this supposed to represent a base-37 number? – Zack Feb 10 '12 at 12:53

6 Answers

up vote 2 down vote accepted

Similar to Timurs answer, however slightly more efficient and takes a variable base.

$array = array(0, 0, 0);

function bloop(&$array, $amount, $base = 37)
{
    $i = count($array) - 1;
    while ($i >= 0) {
        $array[$i] = $amount % $base;
        $amount = ($amount - $array[$i--]) / $base;
    }
}

bloop($array, (37 * 37 * 2) + (37 * 5) + 8); // 2, 5, 8

var_dump($array);
share|improve this answer

If you just want a base-37 number, consider using base_convert instead.

share|improve this answer
2  
base convert has a max of 36?? – AlexMorley-Finch Feb 10 '12 at 12:59
1  
good point. That seems like a pretty big coincidence...is this homework? – Zack Feb 10 '12 at 13:08
$limit = 36;
$step  = 1;
$array = array ( 0 , 0 , 0 );


function increment( array $array , $limit , $step )   {
    $result = $array = array_values( $array );
    while( count( array_keys( $result , $limit ) ) != count( $array ) ) {
        for( $i = 1 ; $i <= count( $result ) ; $i++ ) {
             while( $result[ count( $result )-$i ] < $limit )  {
                 $result[ count( $result )-$i ] += $step;
             }
        }
    }
    return $result;
}

var_dump( increment( $array , $limit , $step ) );
share|improve this answer
function fill($limit){
   $ret = array();
   while($i<=$limit){
      while($j<=$limit){
         while($k<=$limit){
            $ret[] = array($i,$j,$k);
            print_r($a);
            $k++;
         }
         $j++;
      }
      $i++;
   }
   return $ret;
}

fill(36);
share|improve this answer
That won't work because it has to be able to get larger. – Zack Feb 10 '12 at 13:09
added some code to return the actual array – Melvin Protacio Feb 10 '12 at 13:18
function increment(&$array,$num){
    $plus = $num;
    for( $i=count($array)-1;$i>=0;$i-- ){
        $array[$i] += $plus;
        if( $array[$i]>36 ){
            $tmp = $array[$i]%37;
            $plus = ($array[$i]-$tmp)/37;
            $array[$i] = $tmp;
        }else{
            break;
        }
    }
}

// init array
$array = array( 0,0,0 );
// increment 100 times
increment($array,100);

var_dump($array);
share|improve this answer
this is PERFECT! However it goes from (0, 0, 0) - (0, 0, 36) correctly but after 0, 0, 36 it goes to 0, 1, 1 RATHER THAN 0, 1, 0... how could i modify this? – AlexMorley-Finch Feb 10 '12 at 13:25
Oh... Wrong base for %... Edited my post – Timur Feb 10 '12 at 13:30

what about this??

<?php
$arr = array(0=>0,2=>0);
foreach (range(0,36) as $f )
{
   echo "<pre>";print_r(array_pad(array($f),3,0));
   echo "<pre>";print_r(array_pad(array($f),-3,0)); 
   $arr_n = $arr+array(1=>$f);
   ksort($arr_n);
   echo "<pre>"; print_r($arr_n);
}

?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.