コード例 #1
0
ファイル: Stack.php プロジェクト: nglelinh/algorithms
 /**
  * @return mixed
  */
 public function peek()
 {
     return $this->top->getData();
 }
コード例 #2
0
ファイル: LinkedList.php プロジェクト: nglelinh/algorithms
 /**
  * @return mixed
  */
 public function current()
 {
     return $this->current->getData();
 }