Java基础Android基础知识数据结构

数据结构(二)链表实现LinkedList

2019-08-16  本文已影响131人  Merlin_720

数据结构(一)数组实现一个简单的ArrayList
数据结构(二)链表实现LinkedList
数据结构(三)用两种方式简单实现栈
数据结构(四)栈和队列的简单应用
数据结构(五)用两种方式简单实现队列
数据结构(六)BST二分搜索树(上)
数据结构(六)BST二分搜索树(下)
数据结构(七)两种方式实现set

最近学习了链表,自己简单实现了一个LinkedList,这里只是单链表,不过自己处理了一个虚拟头节点,这样遍历的时候就比较省力。这里也是简单的实现了几个方法,add,remove ,get,set,isempty,getsize。
废话不多下边是源码。

package com.company;

public class DummyLinkedList<E> {

    private class Node {
        private E e;
        private Node next;

        public Node(E e, Node next) {
            this.e = e;
            this.next = next;
        }

        public Node(E e) {
            this(e, null);
        }

        public Node() {
            this(null, null);
        }

        @Override
        public String toString() {
            return e.toString();
        }
    }

    private Node dummyHead;
    private int size;

    public DummyLinkedList() {
        dummyHead = new Node(null, null);
        size = 0;
    }

    //返回链表中的元素个数
    public int getSize() {
        return size;
    }

    public boolean isEmpty() {
        return size == 0;
    }


    //在链表index的位置添加新的元素e
//    在链表中不是一个常用操作,练习用:)
    public void add(int index, E e) {
        if (index < 0 || index > size) {
            throw new IllegalArgumentException("Add failed,Illegal index.");
        }

        Node prev = dummyHead;
        for (int i = 0; i < index; i++) {
            prev = prev.next;
        }

        prev.next = new Node(e, prev.next);
        size++;

    }

 

    //在链表头添加一个元素
    public void addFirst(E e) {
        add(0, e);
    }

    //    在链表的末尾添加一个元素
    public void addLast(E e) {
        add(size, e);
    }

    /**
     * 在链表中经常使用虚拟头结点。
     */


    public E get(int index) {
        if (index < 0 || index >= size)
            throw new IllegalArgumentException("Add failed,Illegal index.");
        Node cur = dummyHead.next;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        return cur.e;
    }

    public E getFirst() {
        return get(0);
    }

    public E getLast() {
        return get(size - 1);
    }
    //从链表中删除index位置的元素,返回删除的元素
//    从链表不是一个常用的操作,练习用
    public E remove(int index) {
        if (index < 0 || index >= size)
            throw new IllegalArgumentException("Remove failed,Illegal index.");

        Node prev = dummyHead;
        for (int i = 0; i < index; i++) {
            prev = prev.next;
        }

        Node delNode = prev.next;
        prev.next = delNode.next;
        delNode.next = null;

        size--;
        return delNode.e;
    }

    public void set(int index, E e) {
        if (index < 0 || index >= size)
            throw new IllegalArgumentException("Add failed,Illegal index.");
        Node cur = dummyHead.next;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        cur.e = e;
    }

    public boolean contain(E e) {
        Node cur = dummyHead.next;
        while (cur != null) {
            if (cur.e.equals(e)) {
                return true;
            } else {
                cur = cur.next;
            }
        }
        return false;
    }

    @Override
    public String toString() {
        StringBuilder res = new StringBuilder();
        Node cur = dummyHead.next;
        while (cur != null) {
            res.append(cur.e + "=>");
            cur = cur.next;
        }

        res.append("NULL");
        return res.toString();
    }

 
}

下边我们来简单看一下源码,简单的方法我们就不介绍了,主要是看add,remove。像set其实就是遍历一下链表,把对应的值设置给对应的key。get也是一样,遍历一下链表,获取到对应key的value。contain也是遍历,如果查到对应的key就返回true,如果差不多就返回false。

其实链表的操作思想很简单,主要是代码实现比较费劲。如果要学习链表的话可以自己多做练习,下次我会给两个链表的题,并且解释一下链表的实现。

上一篇下一篇

猜你喜欢

热点阅读