Пример #1
0
 /**
  * Constructs an empty MWayTree with the specified order.
  *
  * @param integer $m The desired order.
  */
 public function __construct($m)
 {
     parent::__construct();
     $this->key = new BasicArray($m - 1, 1);
     $this->subtree = new BasicArray($m);
 }