3

与えられた配列:

$arrData = array(
 0 => array (
   'uid'   => 1,
   'name'  => 'label',
   'open'  => 0,
   'close' => 9
 ),
 1 => array (
   'uid'   => 2,
   'name'  => 'label',
   'open'  => 1,
   'close' => 2
 ),
 2 => array (
   'uid'   => 3,
   'name'  => 'label',
   'open'  => 3,
   'close' => 8
 ),
 3 => array (
   'uid'   => 4,
   'name'  => 'label',
   'open'  => 4,
   'close' => 5
 ),
 4 => array (
   'uid'   => 5,
   'name'  => 'label',
   'open'  => 6,
   'close' => 7
 )
);

この構造を表すもの:

<label>     [0,9]
 <label />  [1,2]
 <label>    [3,8]
  <label /> [4,5]
  <label /> [6,7]
 </label>
</label>

この形式になる配列を取得しようとしています:

$arrNesting = array(
 0=>array(
   'item'    => array('uid'=>1, 'name'=>'label', 'open'=>0, 'close'=>9),
   'children' => array(
     0=>array(
       'item'     => array('uid'=>2, 'name'=>'label', 'open'=>1, 'close'=>2),
       'children' => array()
     ),
     1=>array(
       'item'     => array('uid'=>3, 'name'=>'label', 'open'=>3, 'close'=>8),
       'children' => array(
         0=>array(
           'item'     => array('uid'=>2, 'name'=>'label', 'open'=>4, 'close'=>5),
           'children' => array()
         ),
         1=>array(
           'item'     => array('uid'=>3, 'name'=>'label', 'open'=>6, 'close'=>7),
           'children' => array()
         )
       )
     )
   )
 )
);

次のような関数呼び出しを介して:

// $arrData: Source Data with keys for denoting the left and right node values
// 'open': the key for the left node's value
// 'close': the key for the right node's value
$arrNested = format::nestedSetToArray( $arrData, 'open', 'close' );

これまでのところ、$arrData の値が常に左の値の昇順であると仮定して、この形式を試してきました。uid 値も順序どおりに「たまたま」ありますが、そうであるとは限りません。

public static function nestedSetToArray( $arrData = array(), $openKey='open', $closeKey='close') {
// Hold the current Hierarchy
$arrSets = array();

// Last parent Index, starting from 0
$intIndex = 0;

// Last Opened and Closed Node Values, and maximum node value in this set
$intLastOpened = 0;
$intLastClosed = null;
$intMaxNodeNum = null;

// loop through $arrData
foreach( $arrData as $intKey=>$arrValues) {
  if( !isset( $arrSets[ $intIndex ] )) {
      // Create a parent if one is not set - should happen the first time through
      $arrSets[ $intIndex ] = array ('item'=>$arrValues,'children'=>array());
      $intLastOpened = $arrValues[ $openKey ];
      $intLastClosed = null; // not sure how to set this for checking 2nd IF below
      $intMaxNodeNum = $arrValues[ $closeKey ];
  } else {
      // The current item in $arrData must be a sibling or child of the last one or sibling of an ancestor
      if( $arrValues[ $openKey ] == $intLastOpened + 1) {
         // This is 1 greater then an opening node, so it's a child of it
      } else if( /* condition for sibling */ ) {
         // This is 1 greater than the intLastClosed value - so it's a sibling
      } else if( /* condition for sibling of ancestor */ ) {
         // This starts with a value greater than the parent's closing value...hmm
      }
  }
}

}

これをさらに進めるための指針をいただければ幸いです。

4

1 に答える 1

9

これはうまくいくはずです

$stack = array();
$arraySet = array();


foreach( $arrData as $intKey=>$arrValues) {
    $stackSize = count($stack); //how many opened tags?
    while($stackSize > 0 && $stack[$stackSize-1]['close'] < $arrValues['open']) {
            array_pop($stack); //close sibling and his childrens
            $stackSize--;
        }

    $link =& $arraySet;
    for($i=0;$i<$stackSize;$i++) {
        $link =& $link[$stack[$i]['index']]["children"]; //navigate to the proper children array
    }
    $tmp = array_push($link,  array ('item'=>$arrValues,'children'=>array()));
    array_push($stack, array('index' => $tmp-1, 'close' => $arrValues['close']));

}

return $arraySet;

パラメータ化された開始タグと終了タグはスキップしますが、簡単に追加できます。

編集

ここで何が起きてるの:

まず$stackは空なのでスキップしwhile()ます。$arraySet次に、への参照を割り当てます。 が空$linkであるため、への参照である$stack最初の要素をプッシュ$link$arraySetます。array_push() return 1 because this is the new length of$arraySet Next we add an element to the$stack whit values('index' => 0, 'close' => 10)`

次の要素:$stack要素が 1 つになりましたが、要素$stack[0]['close']よりも大きい$arrValues['open']ため、しばらくスキップします。再び への参照を設定します$arraySet$link、今は に要素があるため、$link への参照$stackを割り当て、現在は を指しています。次に、要素をこの子配列にプッシュします。この子配列のサイズを示し、適切な要素をスタックにプッシュします。$link[$stack[0]['index']]["children"]$link$arraySet[0]["children"]$tmp

次の要素: 2 番目の要素とまったく同じように見えますが、最初にスタックから 1 つの要素をポップします。したがって、スタックでのこの反復の後、2 つの要素があります

('index' => 0, 'close' => 10)
('index' => 0, 'close' => 8)

次の要素: スタックには 2 つの要素がありますが、どちらもより大きなclose属性を持っている$arrValues['open'] ため、while ループをスキップします。次に、ナビゲーション部分で:

  • $linkを指している$arraySet
  • その後に$arraySet[0]["children"]
  • その後に$arraySet[0]["children"][0]["children"]

そして、要素をこの配列にプッシュします。等々...

于 2013-02-03T19:26:13.757 に答える