Esempio n. 1
0
 public function __construct(NaryTree $root)
 {
     $this->queue = new \SplQueue();
     parent::__construct($root);
 }
Esempio n. 2
0
 public function __construct(NaryTree $root)
 {
     $this->countChildren = 0;
     parent::__construct($root);
 }
Esempio n. 3
0
 public final function __construct(NaryTree $root)
 {
     parent::__construct($root);
 }