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