数据结构——链表以及双向链表

1.Java链表

Java链表节点结构:

class Node{
    private Object data;//存储内容
    private Node next;//定义下一个节点
    public Node(Object data){
        this.data = data;
    }
    public void setData(Object data){
        this.data = data;
    }

    public Object getData(){
        return this.data;
    }

    public void setNext(Node next){
        this.next = next;
    }

    public Node getNext(){
        return this.next;
    }
}

public class Test{
    public static void main(String[] args) throws Exception{
        //封装节点
        Node root = new Node("火车头");
        Node n1 = new Node("车厢1");
        Node n2 = new Node("车厢2");
        Node n3 = new Node("车厢3");
        //将新节点挂上去
        root.setData(n1);
        n1.setNext(n2);
        n2.setNext(n3);
    }
}

结点中存放的都是数据,如果需要将数据依次取出,可以采用递归方法。

class Node{
    private Object data;//存储内容
    private Node next;//定义下一个节点
    public Node(Object data){
        this.data = data;
    }
    public void setData(Object data){
        this.data = data;
    }

    public Object getData(){
        return this.data;
    }

    public void setNext(Node next){
        this.next = next;
    }

    public Node getNext(){
        return this.next;
    }
}

public class Test{
    public static void main(String[] args) throws Exception{
        //封装节点
        Node root = new Node("火车头");
        Node n1 = new Node("车厢1");
        Node n2 = new Node("车厢2");
        Node n3 = new Node("车厢3");
        //将新节点挂上去
        root.setData(n1);
        n1.setNext(n2);
        n2.setNext(n3);
        //依次取出节点的数据
        getNodeData(root);
    }
    
    public static void getNodeData(Node node){
        if(node != null){
            System.out.println(node.getData());
            getNodeData(node.getNext());
        }
    }
}

在整个链表实现过程中,Node类的核心作用在于保存数据和连接节点关系,但是发现,客户端需要自己来进行节点的创建以及关心的配置。所以链表还需要一个单独的类Link,通过Link实现Node类的数据保存以及关系处理。

2.双向链表

interface Link{
    void add(Object obj);
    boolean remove(int index);
    boolean set(int index,Object obj);
    Object get(int index);
    int contain(Object obj);
    void clear();
    void printLink();
    int length();
    Object[] toArray();
}

class LinkImpl implements Link{
    private Node first;
    private Node last;
    private int size = 0;

    //封装Node类
    private class Node{
        private Node prev;
        private Object data;
        private Node next;
        public Node(Node prev, Object data, Node next){
            super();
            this.prev = prev;
            this.next = next;
            this.data = data;
        }

    }

    //添加节点
    @Override
    public void add(Object obj){
        Node tmp = this.last;
        Node newNode = new Node(tmp,obj,null);
        this.last = newNode;
        if(this.first == null){
            this.first = newNode;
        }else{
            tmp.next = newNode;
        }
        this.size ++;
    }

    //判断索引是否合法
    private boolean isLinkElement(int index){
        return index >= 0 && index < this.size;
    }

    //找到目标索引对应的节点
    private Node node(int index){
        //目的索引在链表前段
        if(index < (size >> 1)){
            Node result = this.first;
            for(int i = 0; i < index; i ++){
                result = result.next;
            }
            return result;
        }
        //目的索引在链表后段
        Node result = this.last;
        for(int i = size -1; i > index;i --){
            result = result.prev;
        }
        return result;
    }

    //移除指定索引的元素
    @Override
    public boolean remove(int index) {
        //索引非法
        if(!isLinkElement(index)){
            return false;
        }
        Node node = node(index);
        if(node == this.first){
            //链表中只有一个节点
            if(node == this.last){
                node = null;
                this.size --;
                return true;
            }else{
                //此时要删掉的是头节点
                Node tmp = this.first;
                this.first = node.next;
                tmp.next = null;
                this.size --;
                return true;
            }
        }else if(node == this.last){
            Node tmp = this.last;
            this.last = node.prev;
            tmp.prev = null;
            this.last.next = null;
            this.size --;
            return true;
        }
        node.next.prev = node.prev;
        node.prev.next = node.next;
        node.prev = node.next = null;
        this.size --;
        return true;
    }

    //替换指定索引节点存储内容
    @Override
    public boolean set(int index, Object obj) {
        if (!isLinkElement(index)) {
            return false;
        }
        Node node = node(index);
        node.data = obj;
        return true;
    }

    //返回指定索引对应的节点存储的数据
    @Override
    public Object get(int index) {
        //索引非法返回空
        if (!isLinkElement(index)) {
            return null;
        }
        return node(index).data;
    }

    //判读链表中该数据存在的index,不存在返回-1
    @Override
    public int contain(Object obj) {
        //节点可能存储空值
        if(obj == null){
            int index = 0;
            for(Node x = this.first; x != null;x = x.next){
                if (x.data == null){
                    return index;
                }
                index ++;
            }
            //没找到返回-1
            return -1;
        }else{
            //待查找的值不是null
            int index = 0;
            for(Node x = this.first; x != null;x = x.next){
                if(obj.equals(x.data)){
                    return index;
                }
                index ++;
            }
            return -1;
        }
    }

    //清空链表
    @Override
    public void clear() {
        //从头到尾挨个置为空
        for(Node x = this.first; x != null;){
            Node temp = x.next;
            x.prev = null;
            x.next = null;
            x = temp;
        }
        //将头尾指针置空
        this.first = this.last = null;
        this.size = 0;
    }

    //打印链表
    @Override
    public void printLink() {
        Object[] result = this.toArray();
        for(Object object : result){
            System.out.println(object);
        }
    }

    @Override
    public int length() {
        return this.size;
    }

    @Override
    public Object[] toArray() {
        Object[] result = new Object[size];
        int i = 0;
        for(Node x = this.first; x != null;x = x.next){
            result[i ++] = x.data;
        }
        return result;
    }
}

public class Test {
    public static void main(String[] args) {
        LinkImpl link = new LinkImpl();
        link.add("火车头");
        link.add("车厢1");
        link.add("车厢2");
        System.out.println(link.contain("车厢1"));
        System.out.println(link.contain("test"));
        System.out.println(link.length());
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值