摘要:
<?php class Stack{ const MAXSIZE = 4;// 栈最大容量 private $top = -1; private $stack = array();// 利用数组存储数据 public function __construct(){ $this->stack = ar 阅读全文
posted @ 2023-03-21 17:39
kevin_yang123
阅读(16)
评论(0)
推荐(0)
浙公网安备 33010602011771号