单向链表思路

package linkedList;

import java.util.Iterator;
import java.util.Objects;
import java.util.Spliterator;
import java.util.function.Consumer;

public class OneWayLinkedList implements Iterable {
    /**
     * 静态内部类
     */
    public static class Node {
        public int data;

        public Node next;

        public Node(int data) {
            this.data = data;
        }
    }

    private Node first = null;

    private Node current = null;

    /**
     * 新增一个节点
     *
     * @param data
     */
    public void add(int data) {
        //产生一个新节点
        Node node = new Node(data);
        //1、如果是第一个节点
        if (Objects.isNull(first)) {
            first = node;
            current = node;
        } else {
            //2、如果不是第一个节点
            current.next = node;
            current = node;
        }
    }

    /**
     * 删除指定位置的节点
     *
     * @param position
     */
    public void del(int position) {
        //如果要删除的是头节点
        if (position == 0) {
            first = first.next;
        }
        int curPosition = 1;
        Node preNode = first;
        Node curNode = first.next;
        while (Objects.nonNull(curNode)) {
            if (curPosition == position) {
                preNode.next = curNode.next;
                //清空要删除节点的next
                curNode.next = null;
            }
            curPosition++;
            preNode = curNode;
            curNode = curNode.next;
        }
    }

    /**
     * 在控制台显示数据
     */
    public void display() {
        Node node = first;
        while (Objects.nonNull(node)) {
            System.out.println(node.data);
            node = node.next;
        }
    }

    /**
     * 获取第一个节点
     *
     * @return
     */
    public Node getStartNode() {
        return first;
    }

    /**
     * 获取最后一个节点
     *
     * @return
     */
    public Node getEndNode() {
        if (Objects.isNull(first)){
            return null;
        }
        Node node = first;
        while (Objects.nonNull(node.next)) {
            node = node.next;
        }
        return node;
    }

    /**
     * 获取指定节点
     * @param position
     * @return
     */
    public Node get(int position) {
        if (position == 0) {
            return first;
        }
        int curPosition = 1;
        Node curNode = first.next;
        while (Objects.nonNull(curNode)) {
            if (curPosition == position) {
                return curNode;
            }
            curPosition++;
            curNode = curNode.next;
        }
        return null;
    }

    @Override
    public Iterator iterator() {
        //匿名内部类
        return new Iterator() {
            Node node = first;//外部类中的私有成员

            @Override
            public void remove() {
                Iterator.super.remove();
            }

            @Override
            public void forEachRemaining(Consumer action) {
                Iterator.super.forEachRemaining(action);
            }

            @Override
            public boolean hasNext() {
                return Objects.nonNull(node);
            }

            @Override
            public Object next() {
                int data = node.data;
                node = node.next;
                return data;
            }
        };
    }

    @Override
    public void forEach(Consumer action) {
        Iterable.super.forEach(action);
    }

    @Override
    public Spliterator spliterator() {
        return Iterable.super.spliterator();
    }

}

图解:

思路:首先要理解一个节点包含两部分,其中data是数据,next是指向下一个节点。故链表的数据连接起来其实是通过next。知道了节点的含义及内容后,我们可以去写一个Node类封装节点 。再建一个类去编写链表,其实链表只需要知道头节点和当前节点。也就是说我们向链表插入第一个节点a时,a既是头节点也是当前节点,继续向链表插入节点b时,a依旧是头节点,但是此时我们需要做两个操作,第一个是将节点a中的next指向节点b,第二个是更改当前节点为b。以此类推便形成了单向链表,所以链表中最后一个节点的next是null,没有指向了。

操作:链表的增删改查,重点讲一下删除,若链表此时是a—b—c—d四个节点,想要删除节点c,那么需要直接更改节点b的next,将其指向节点d并将节点c的next致空。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值