单链表的实现

本文介绍了使用Java实现的单链表数据结构,包括尾插法(添加新节点)、尾删法(删除最后一个节点)以及链表数据的显示方法。通过实例展示了如何创建链表、添加节点和删除节点的操作,并提供了完整程序和输出结果。
摘要由CSDN通过智能技术生成

定义结点元素:

class Node{
    public int id ;     //结点编号
    public int val;     //结点数据
    public Node Next;   //指向下一节点

	//构造器
    public Node(int val,int id) {
        this.val = val;
        this.id = id;
    }

    @Override
    public String toString() {
        return "Node{"+
                " id=" + id +
                "    val=" + val +
                '}';
    }
}

尾插法:

//添加结点(尾插)---形参表示要添加的结点
    public void add_tail(Node tmp){
        //辅助指针
        Node node = head;
        //遍历链表 找到尾结点
        while(node.Next != null){
            node = node.Next;
        }
        node.Next = tmp;	//尾结点指向新添加的结点
        length ++;	//添加成功,链表长度加 1
    }

尾删法:

 //删除结点(尾删)
    public void del_tail(){
        Node delete = head.Next;    //保存删除结点位置
        Node node = head;           //保存删除结点的前一个位置
        //判断链表是否为空,若为空直接退出
        if(delete == null){
            System.out.println("链表为空,无法删除");
            return;
        }
        //遍历链表 找到尾结点(即删除的结点)
        while(delete.Next != null){
            delete = delete.Next;
            node = node.Next;
        }
        System.out.println("删除结点数据为:    "+ delete);	//输出删除结点的元素(会调用该结点的tostring 方法)
        node.Next = null;	//将删除结点的指向赋值为空
        length --;	//删除成功,链表长度减 1
    }

显示链表数据:

public void show(){
        //判断链表是否为空
        if(head.Next == null){
            System.out.println("链表为空");
            return;
        }
        Node node = head.Next;
        while(node != null){
            System.out.println("结点数据为:    "+ node);
            node = node.Next;
        }
    }

完整程序:

class SingleList{
    public int length = 0 ;  //链表长度
    //初始化头结点 
    private Node head = new Node(0,0);

    //添加结点(尾插)
    public void add_tail(Node tmp){
        //辅助指针
        Node node = head;
        //遍历链表 找到尾结点
        while(node.Next != null){
            node = node.Next;
        }
        node.Next = tmp;
        length ++;
    }
    //删除结点(尾删)
    public void del_tail(){
        Node delete = head.Next;    //保存删除结点位置
        Node node = head;           //保存删除结点的前一个位置
        if(delete == null){
            System.out.println("链表为空,无法删除");
            return;
        }
        //遍历链表 找到尾结点(即删除的结点)
        while(delete.Next != null){
            delete = delete.Next;
            node = node.Next;
        }
        System.out.println("删除结点数据为:    "+ delete);
        node.Next = null;
        length --;
    }
    public void show(){
        //判断链表是否为空
        if(head.Next == null){
            System.out.println("链表为空");
            return;
        }
        Node node = head.Next;
        while(node != null){
            System.out.println("结点数据为:    "+ node);
            node = node.Next;
        }
    }
}
public class 单链表 {
    public static void main(String[] args) {
        Node node1 = new Node(5,1);
        Node node2 = new Node(6,2);
        Node node3 = new Node(7,3);

        SingleList singleList = new SingleList();
        singleList.add_tail(node1);
        singleList.add_tail(node2);
        singleList.add_tail(node3);
        singleList.show();
        System.out.println("链表长度为:    "+ singleList.length);
        singleList.del_tail();
        singleList.del_tail();

        singleList.show();
        System.out.println("链表长度为:    "+ singleList.length);

    }
}
class SingleList{
    public int length = 0 ;  //链表长度
    //初始化头结点
    private Node head = new Node(0,0);

    //添加结点(尾插)
    public void add_tail(Node tmp){
        //辅助指针
        Node node = head;
        //遍历链表 找到尾结点
        while(node.Next != null){
            node = node.Next;
        }
        node.Next = tmp;
        length ++;
    }
    //删除结点(尾删)
    public void del_tail(){
        Node delete = head.Next;    //保存删除结点位置
        Node node = head;           //保存删除结点的前一个位置
        if(delete == null){
            System.out.println("链表为空,无法删除");
            return;
        }
        //遍历链表 找到尾结点(即删除的结点)
        while(delete.Next != null){
            delete = delete.Next;
            node = node.Next;
        }
        System.out.println("删除结点数据为:    "+ delete);
        node.Next = null;
        length --;
    }
    public void show(){
        //判断链表是否为空
        if(head.Next == null){
            System.out.println("链表为空");
            return;
        }
        Node node = head.Next;
        while(node != null){
            System.out.println("结点数据为:    "+ node);
            node = node.Next;
        }
    }

}
class Node{
    public int id ;     //结点编号
    public int val;     //保存结点数据
    public Node Next;   //指向下一节点

    public Node(int val,int id) {
        this.val = val;
        this.id = id;
    }

    @Override
    public String toString() {
        return "Node{"+
                " id=" + id +
                "    val=" + val +
                '}';
    }
}

输出结果:

在这里插入图片描述
说明:此文章为学习笔记,如有侵权请联系删除。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

_Byte_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值