摘要: class SortedList{ private Link_long first; public SortedList(){ //构造函数 first = null; } public void insert(long key){ Link_long newLink = new Link_long 阅读全文
posted @ 2016-03-30 22:09 tonglin0325 阅读(269) 评论(0) 推荐(0) 编辑
摘要: class FirstLastList_long{ private Link_long first; private Link_long last; public FirstLastList_long() { //构造函数 this.first = null; this.last = null; } 阅读全文
posted @ 2016-03-30 21:16 tonglin0325 阅读(468) 评论(0) 推荐(0) 编辑
摘要: class Link_long{ //链节点类 public long dData; public Link_long next; //链表中下一个节点的引用 public Link_long(long dData) { super(); this.dData = dData; } public v 阅读全文
posted @ 2016-03-30 21:12 tonglin0325 阅读(982) 评论(0) 推荐(0) 编辑
摘要: class FirstLastList{ private Link first; private Link last; public FirstLastList() { //构造函数 this.first = null; this.last = null; } public boolean isEm 阅读全文
posted @ 2016-03-30 16:47 tonglin0325 阅读(219) 评论(0) 推荐(0) 编辑
摘要: <1>链表 <2>引用和基本类型 <3>单链表 class Link{ //链节点类 public int iData; public double dData; public Link next; //链表中下一个节点的引用 public Link(int iData, double dData) 阅读全文
posted @ 2016-03-30 14:13 tonglin0325 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1.下载python3.8 cd ~/Download wget https://www.python.org/ftp/python/3.8.11/Python-3.8.11.tgz 解压 tar -zxvf Python-3.8.11.tgz 2.创建目录 cd /usr/local sudo m 阅读全文
posted @ 2016-03-30 12:11 tonglin0325 阅读(412) 评论(0) 推荐(0) 编辑