标签:ack 注意 return 方式 查询 java实现 keep cat sys
定义:所谓链表就是指在某节点存储数据的过程中还要有一个属性用来指向下一个链表节点,这样的数据存储方式叫做链表
链表优缺点:
优点:易于存储和删除
缺点:查询起来较麻烦
下面我们用java来实现如下链表结构:
首先定义节点类:
复制代码
package LinkTest;
/**
*/
public class Node {
private int value;//存储数据
private Node next;//下一个节点
/**
然后定义一个链表类:
复制代码
package LinkTest;
/**
*/
public class Link {
private Node current;
private Node root;
public void insert(int vlaue){
Node newNode=new Node(vlaue);
if(this.current==null){
this.current=newNode;
this.root=this.current;
}else{
this.current.setNext(newNode);
this.current=this.current.getNext();
}
}
//普通遍历
public void getList(){
this.current=this.root;
while(this.current!=null){
System.out.print(this.current.getValue());
this.current=this.current.getNext();
if(this.current!=null){
System.out.print("------->");
}
}
}
//递归遍历
public void getList2(){
DG(this.root);
}
//递归方法
public void DG(Node node){
System.out.print(node.getValue()+"----->");
if(node.getNext()!=null){
DG(node.getNext());
}else{
return;
}
}
}
复制代码
测试类:
复制代码
package LinkTest;
/**
*/
public class Test {
public static void main(String[] args){
Link l=new Link();
l.insert(1);
l.insert(4);
l.insert(5);
l.insert(6);
l.insert(9);
l.insert(8);
l.getList();
}
}
复制代码
测试类运行结果:
1------->4------->5------->6------->9------->8
这样我们就用java实现了一个简单的链表结构。 欢迎工作一到五年的Java工程师朋友们加入Java群: 891219277
群内提供免费的Java架构学习资料(里面有高可用、高并发、高性能及分布式、Jvm性能调优、Spring源码,MyBatis,Netty,Redis,Kafka,Mysql,Zookeeper,Tomcat,Docker,Dubbo,Nginx等多个知识点的架构资料)合理利用自己每一分每一秒的时间来学习提升自己,不要再用"没有时间“来掩饰自己思想上的懒惰!趁年轻,使劲拼,给未来的自己一个交代!
标签:ack 注意 return 方式 查询 java实现 keep cat sys
原文地址:http://blog.51cto.com/14084556/2341107