java单向链表基本操作简单实现

package com.htsc.link;

public class Link
{
    Node head; 
    
    public Link()
    {
        super();
        this.head = new Node();
    }

    public Node getHead()
    {
        return head;
    }

    public void setHead(Node head)
    {
        this.head = head;
    }

    //插入
    public boolean insert(int data){
        Node node = new Node(data);
        Node tmp = head;
        while (tmp.next != null) {
            tmp = tmp.next;
        }
        tmp.next = node;
        return true;
    } 
    
    //知道头结点删除
    public boolean delete(int index){
        if(index <= 0 || index > length()){
            return false;
        }
        Node temp = head;
        for(int i = 1; i < index; i++){
            temp = temp.next;
        }
        temp.next = temp.next.next;
        return true;
    }
    
    //计算链表长度
    public int length(){
        int length = 0;
        Node temp = head;
        while(temp.next != null){
            temp = temp.next;
            length++;
        }
        return length;
    }
    
    //遍历
    public void show(){
        Node temp = head;
        while (temp.next != null) {
            System.out.println(temp.next.data);
            temp = temp.next;
        }
    }
}

package com.htsc.link;

public class Node
{
    Node next = null;
    int data;
    
    public Node()
    {
        super();
    }
    
    public Node(int data)
    {
        super();
        this.data = data;
    }

    public Node getNext()
    {
        return next;
    }
    public void setNext(Node next)
    {
        this.next = next;
    }
    public int getData()
    {
        return data;
    }
    public void setData(int data)
    {
        this.data = data;
    }
    
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值