确定性跳跃表Java实现.docVIP

  • 10
  • 0
  • 约2.42万字
  • 约 20页
  • 2019-01-05 发布于江苏
  • 举报
1-5确定性跳跃表Java实现 作者:云南大学软件学院09数字媒体技术 雒森 /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package LuoSen.DS.DS; import java.io.Serializable; /** * * @author LENOVO */ /**确定性跳跃表链的结点*/ public class DSLLinkNodeS implements Serializable { /**跳跃表链结点的层数*/ public int levelNum=1; /**跳跃表链结点的数据*/ public S data; /**顶部的链*/ public DSLNodeS top; /**构造函数*/ public DSLLinkNode(){ data=null; top=null; } /**构造函数*/ public DSLLinkNode(S data,DSLNodeS top){ this.data=data; this.top=top;

文档评论(0)

1亿VIP精品文档

相关文档