<?php/** * 链表元素结点类 */class Node_Element { public $pre = NULL; // 前驱 public $next = NULL; // 后继 public $key = NULL; // 元素键值 public $data = NULL; /
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号