美文网首页
Java链表

Java链表

作者: 7i昂 | 来源:发表于2019-08-26 19:25 被阅读0次

    单向链表(Single-Linked List)

    单链表是链表中结构最简单的。一个单链表的节点(Node)分为两个部分,第一个部分(data)保存或者显示关于节点的信息,另一个部分存储下一个节点的地址。最后一个节点存储地址的部分指向空值。

    单向链表只可向一个方向遍历,一般查找一个节点的时候需要从第一个节点开始每次访问下一个节点,一直访问到需要的位置。而插入一个节点,对于单向链表,我们只提供在链表头插入,只需要将当前插入的节点设置为头节点,next指向原头节点即可。删除一个节点,我们将该节点的上一个节点的next指向该节点的下一个节点。

    image

    在表头增加节点:

    image

    删除节点:

    image

    单向链表的具体实现

    package com.ys.datastructure;
    
    public class SingleLinkedList {
        private int size;//链表节点的个数
        private Node head;//头节点
        
        public SingleLinkedList(){
            size = 0;
            head = null;
        }
        
        //链表的每个节点类
        private class Node{
            private Object data;//每个节点的数据
            private Node next;//每个节点指向下一个节点的连接
            
            public Node(Object data){
                this.data = data;
            }
        }
        
        //在链表头添加元素
        public Object addHead(Object obj){
            Node newHead = new Node(obj);
            if(size == 0){
                head = newHead;
            }else{
                newHead.next = head;
                head = newHead;
            }
            size++;
            return obj;
        }
        
        //在链表头删除元素
        public Object deleteHead(){
            Object obj = head.data;
            head = head.next;
            size--;
            return obj;
        }
        
        //查找指定元素,找到了返回节点Node,找不到返回null
        public Node find(Object obj){
            Node current = head;
            int tempSize = size;
            while(tempSize > 0){
                if(obj.equals(current.data)){
                    return current;
                }else{
                    current = current.next;
                }
                tempSize--;
            }
            return null;
        }
        
        //删除指定的元素,删除成功返回true
        public boolean delete(Object value){
            if(size == 0){
                return false;
            }
            Node current = head;
            Node previous = head;
            while(current.data != value){
                if(current.next == null){
                    return false;
                }else{
                    previous = current;
                    current = current.next;
                }
            }
            //如果删除的节点是第一个节点
            if(current == head){
                head = current.next;
                size--;
            }else{//删除的节点不是第一个节点
                previous.next = current.next;
                size--;
            }
            return true;
        }
        
        //判断链表是否为空
        public boolean isEmpty(){
            return (size == 0);
        }
        
        //显示节点信息
        public void display(){
            if(size >0){
                Node node = head;
                int tempSize = size;
                if(tempSize == 1){//当前链表只有一个节点
                    System.out.println("["+node.data+"]");
                    return;
                }
                while(tempSize>0){
                    if(node.equals(head)){
                        System.out.print("["+node.data+"->");
                    }else if(node.next == null){
                        System.out.print(node.data+"]");
                    }else{
                        System.out.print(node.data+"->");
                    }
                    node = node.next;
                    tempSize--;
                }
                System.out.println();
            }else{//如果链表一个节点都没有,直接打印[]
                System.out.println("[]");
            }
            
        }
    
    }
    

    测试:

    @Test
    public void testSingleLinkedList(){
        SingleLinkedList singleList = new SingleLinkedList();
        singleList.addHead("A");
        singleList.addHead("B");
        singleList.addHead("C");
        singleList.addHead("D");
        //打印当前链表信息
        singleList.display();
        //删除C
        singleList.delete("C");
        singleList.display();
        //查找B
        System.out.println(singleList.find("B"));
    }
    

    打印结果:

    image

    用单向链表实现栈

    package com.ys.datastructure;
    
    public class StackSingleLink {
        private SingleLinkedList link;
        
        public StackSingleLink(){
            link = new SingleLinkedList();
        }
        
        //添加元素
        public void push(Object obj){
            link.addHead(obj);
        }
        
        //移除栈顶元素
        public Object pop(){
            Object obj = link.deleteHead();
            return obj;
        }
        
        //判断是否为空
        public boolean isEmpty(){
            return link.isEmpty();
        }
        
        //打印栈内元素信息
        public void display(){
            link.display();
        }
    
    }
    

    双端链表

    对于单项链表,我们如果想在尾部添加一个节点,那么必须从头部一直遍历到尾部,找到尾节点,然后在尾节点后面插入一个节点。这样操作很麻烦,如果我们在设计链表的时候多个对尾节点的引用,那么会简单很多。

    image

    注意和后面将的双向链表的区别!!!

    双端链表的具体实现

    package com.ys.link;
    
    public class DoublePointLinkedList {
        private Node head;//头节点
        private Node tail;//尾节点
        private int size;//节点的个数
        
        private class Node{
            private Object data;
            private Node next;
            
            public Node(Object data){
                this.data = data;
            }
        }
        
        public DoublePointLinkedList(){
            size = 0;
            head = null;
            tail = null;
        }
        
        //链表头新增节点
        public void addHead(Object data){
            Node node = new Node(data);
            if(size == 0){//如果链表为空,那么头节点和尾节点都是该新增节点
                head = node;
                tail = node;
                size++;
            }else{
                node.next = head;
                head = node;
                size++;
            }
        }
        
        //链表尾新增节点
        public void addTail(Object data){
            Node node = new Node(data);
            if(size == 0){//如果链表为空,那么头节点和尾节点都是该新增节点
                head = node;
                tail = node;
                size++;
            }else{
                tail.next = node;
                tail = node;
                size++;
            }
        }
        
        //删除头部节点,成功返回true,失败返回false
        public boolean deleteHead(){
            if(size == 0){//当前链表节点数为0
                return false;
            }
            if(head.next == null){//当前链表节点数为1
                head = null;
                tail = null;
            }else{
                head = head.next;
            }
            size--;
            return true;
        }
        //判断是否为空
        public boolean isEmpty(){
            return (size ==0);
        }
        //获得链表的节点个数
        public int getSize(){
            return size;
        }
        
        //显示节点信息
        public void display(){
            if(size >0){
                Node node = head;
                int tempSize = size;
                if(tempSize == 1){//当前链表只有一个节点
                    System.out.println("["+node.data+"]");
                    return;
                }
                while(tempSize>0){
                    if(node.equals(head)){
                        System.out.print("["+node.data+"->");
                    }else if(node.next == null){
                        System.out.print(node.data+"]");
                    }else{
                        System.out.print(node.data+"->");
                    }
                    node = node.next;
                    tempSize--;
                }
                System.out.println();
            }else{//如果链表一个节点都没有,直接打印[]
                System.out.println("[]");
            }
        }
    
    }
    

    用双端链表实现队列

    package com.ys.link;
    
    public class QueueLinkedList {
        
        private DoublePointLinkedList dp;
        
        public QueueLinkedList(){
            dp = new DoublePointLinkedList();
        }
        public void insert(Object data){
            dp.addTail(data);
        }
        
        public void delete(){
            dp.deleteHead();
        }
        
        public boolean isEmpty(){
            return dp.isEmpty();
        }
        
        public int getSize(){
            return dp.getSize();
        }
        
        public void display(){
            dp.display();
        }
        
    }
    

    相关文章

      网友评论

          本文标题:Java链表

          本文链接:https://www.haomeiwen.com/subject/pgndectx.html