摘要: ``` stack) stack,$value); } #出栈 public function pop() { if (!$this->stack_is_null()) { return None; }; array_pop($this->stack); } #取栈顶 public function get_top() { if (!$this->stack_is_null()) { return 阅读全文
posted @ 2019-12-05 16:51 青柚 阅读(224) 评论(0) 推荐(0) 编辑