实现单向链表(不带傀儡节点)代码.

实现单向链表(不带傀儡节点)代码.

public class Test {
    public static void main(String[] args) {
        MyLinkedList myLinkedList = new MyLinkedList();
        myLinkedList.createLinkedList();
        myLinkedList.show();
        System.out.println(myLinkedList.getSize());
        myLinkedList.addFirst(11);
        myLinkedList.show();
        myLinkedList.addLast(77);
        myLinkedList.show();
        myLinkedList.addIndex(2,100);
        myLinkedList.show();
        System.out.println(myLinkedList.contains(77));
        myLinkedList.remove(100);
        myLinkedList.show();
        myLinkedList.removeAllKey(23);
        myLinkedList.show();
        myLinkedList.clear();
        myLinkedList.show();
    }
}
class Node {
    public int val;
    public Node next;
    public Node(int val) {
        this.val = val;
    }
}
public class MyLinkedList {
    public Node head;
    public void createLinkedList() {
        Node node1 = new Node(23);
        Node node2 = new Node(23);
        Node node3 = new Node(45);
        Node node4 = new Node(66);
        Node node5 = new Node(67);
        node1.next = node2;
        node2.next = node3;
        node3.next = node4;
        node4.next = node5;
        this.head = node1;
    }
    //
    public void show() {
        Node cur = this.head;
        while (cur != null) {
            System.out.print(cur.val+" ");
            cur = cur.next;
        }
        System.out.println(" ");
    }
    //
    public int getSize() {
        Node cur = this.head;
        int count = 0;
        while(cur !=null ) {
            count++;
            cur = cur.next;
        }
        return count;
    }
    //头插法
    public void addFirst(int data){
        Node cur = new Node(data);
        cur.next = this.head;
        this.head = cur;
    }
    //尾插法
    public void addLast(int data){
        Node node = new Node(data);
        if(this.head == null) {
            this.head = node;  //如果为空 就直接设为头
            return;
        }
        Node cur = this.head;
        while (cur.next != null) {
            cur = cur.next;
        }
        cur.next = node;
    }
    //任意位置插入,第一个数据节点为0号下标
    public boolean addIndex(int index,int data) {
        if(index<0 || index>getSize()) {
            System.out.println("index不合法");
            return false;
        }
        Node node = new Node(data);
        Node cur = findIndexSubOne(index); //求得index 前面的节点;
        node.next = cur.next; //新的node等于节点的地址;
        cur.next = node;//node的节点给到新的cur.next 的地址;
        return true;
    }
    private Node findIndexSubOne(int index) {
        Node cur = this.head;
        while (index-1 !=0 ) {
            cur = cur.next;
            index--;
        }
        return cur;
    }
    //查找是否包含关键字key是否在单链表当中
    public boolean contains(int key){
        Node node = new Node(key);
        if(this.head ==null) {
            System.out.println("链表为空");
            return false;
        }
        Node cur = this.head;
        while (cur != null) {
            if(key == cur.val) {
                return true;
            }
            cur = cur.next;
        }
        return false;
    }
    //删除第一次出现关键字为key的节点
    public void remove(int key) {
        if(this.head.val == key) {
            this.head = this.head.next;
            return;
        }
        Node node = searchPrev(key);
        if(node == null) {
            System.out.println("不存在该关键字");
            return;
        }
        Node del = node.next;
        node.next = del.next;
    }
    private Node searchPrev(int key) {
        Node cur = this.head;
        while (cur.next != null) {
            if(cur.next.val ==key ) {
               return cur;  //cur代表删除这个关键字的前一个节点
            }
            cur =cur.next;
        }
        return null;
    }
    //删除所有值为key的节点
    public void removeAllKey(int key) {
        Node prev = this.head;
        Node cur = this.head.next;
        while (cur != null) {
            if(cur.val == key) {
                prev.next = cur.next;
            }else {
                prev = cur;
            }
            cur = cur.next;
        }
        if(this.head.val == key) {
            this.head = this.head.next;
        }
    }
    //
    public void clear() {
        this.head = null;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值