コード例 #1
0
ファイル: AbstractDeque.php プロジェクト: EdenChan/Instances
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: SimpleQueue.php プロジェクト: rendix2/QW_MVS
 public function __construct($debug = FALSE)
 {
     parent::__construct();
     $this->size = 0;
 }
コード例 #3
0
ファイル: LIFO.php プロジェクト: philip/Buzz
 public function __construct()
 {
     parent::__construct('array_push', 'array_pop');
 }
コード例 #4
0
ファイル: QueueAsArray.php プロジェクト: EdenChan/Instances
 /**
  * Constructs a QueueAsArray with the given size.
  *
  * @param integer $size The size of this queue.
  */
 public function __construct($size = 0)
 {
     parent::__construct();
     $this->array = new BasicArray($size);
     $this->head = 0;
     $this->tail = $size - 1;
 }
コード例 #5
0
 /**
  * Constructs a QueueAsLinkedList.
  */
 public function __construct()
 {
     parent::__construct();
     $this->list = new LinkedList();
 }