摘要: <?php //链表节点 class node { public $id; //节点id public $name; //节点名称 public $next; //下一节点 public function __construct($id, $name) { $this->id = $id; ... 阅读全文
posted @ 2013-03-22 15:00 yangqing_fly 阅读(277) 评论(0) 推荐(0)
摘要: <?php //链表节点 class node { public $id; //节点id public $name; //节点名称 public $next; //下一节点指针 public function __construct($id, $name) { $this->id = $id; ... 阅读全文
posted @ 2013-03-22 14:49 yangqing_fly 阅读(421) 评论(0) 推荐(0)