コード例 #1
0
ファイル: LevelOrderIterator.php プロジェクト: rendix2/QW_MVS
 public function __construct(NaryTree $root)
 {
     $this->queue = new \SplQueue();
     parent::__construct($root);
 }
コード例 #2
0
ファイル: CountIterator.php プロジェクト: rendix2/QW_MVS
 public function __construct(NaryTree $root)
 {
     $this->countChildren = 0;
     parent::__construct($root);
 }
コード例 #3
0
ファイル: PostOrderIterator.php プロジェクト: rendix2/QW_MVS
 public final function __construct(NaryTree $root)
 {
     parent::__construct($root);
 }