2016-01-20 java中的链表设计…

java中链表的设计
class Node{
private String name; //存储节点名字
private Node next;//保存下一个节点
public Node(String name){
this.name=name;
}
public void setNext(Node next){
this.next=next;
}
public Node getNext(){
return next;
}
public String getName(){
return name;
}
}
public class LinkDemo01 {
public static void main(String args[]){
Node root=new Node("根节点");
Node n1=new Node("第一节车厢");
Node n2=new Node("第二节车厢");
Node n3=new Node("第三节车厢");
root.setNext(n1);
n1.setNext(n2);
n2.setNext(n3);
print(root);
}
public static void print(Node node){
if(node!=null){
System.out.print(node.getName()+" --> ");
}
if(node.getNext()!=null){
print(node.getNext());
}else{
System.out.print("null");
}
}
}
运行结果:
根节点 --> 第一节车厢 --> 第二节车厢 --> 第三节车厢 --> null


对于链表的查询,删除,增加节点
package com.mz;
class Link{
class Node{
private String name; //存储节点名字
private Node next;//保存下一个节点
public Node(String name){
this.name=name;
}
public String getName(){
return name;
}
public void addNode(Node newNode){/ /增加节点
if(this.next==null){//后面没有节点
this.next=newNode;
}else{
this.next.addNode(newNode);//向下继续查
}
}
public void printNode(){
System.out.print(this.name+"-->");
if(this.next!=null){
this.next.printNode();//向下继续列出
}
}
public boolean searchNode(String name){
if(this.name.equals(name)){
return true;
}else{
if(this.next!=null){
return this.next.searchNode(name);
}else{
return false;
}
}
}
public void deleteNode(Node preNode,String name){
if(this.name.equals(name)){
preNode.next=this.next;
}else{
this.next.deleteNode(this,name);
}
}
}
private Node root;
public void add(String name){
Node newNode=new Node(name);
if(this.root==null){//没有根节点
this.root=newNode;
}else{
this.root.addNode(newNode);
}
}
public void delete(String name){
if(this.search(name)){//判断节点是否存在
if(this.root.name.equals(name)){
if(this.root.next!=null){
this.root=this.root.next;//改变根节点 
}else{
this.root=null;//取消
}
}else{
if(this.root.next!=null){
this.root.next.deleteNode(root, name);
}
}
}
}
public void print(){
if(this.root!=null){
this.root.printNode();
}
}
public boolean search(String name){//指定查找的名字
if(this.root!=null){
return this.root.searchNode(name);
}else{
return false;
}
}
}
public class LinkDemo02 {
public static void main(String args[]){
Link link=new Link();
link.add("根节点");
link.add("第一节点");
link.add("第二节点");
link.add("第三节点");
link.add("第四节点");
link.add("第五节点");
link.print(); 
link.delete("第四节点");
System.out.println();
link.print();
System.out.println();
link.delete("根节点");
link.add("第六节点");
link.print();
//System.out.println(link.search("根x节点"));
}
}
以上代码也说明了内部类使用的好处

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值