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