91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java數據結構之鏈表的相關知識有哪些

發布時間:2021-06-21 11:14:39 來源:億速云 閱讀:134 作者:小新 欄目:開發技術

這篇文章主要介紹了Java數據結構之鏈表的相關知識有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

一、鏈表

1.1 概述

鏈表是真正動態的數據結構,最簡單的動態數據結構,基本用于輔助組成其他數據結構。

數據存儲在“節點”(Node)中

Java數據結構之鏈表的相關知識有哪些

優點:真正的動態,不需要處理固定容量的問題
缺點:喪失了隨機訪問的能力

1.2 鏈表使用的基本功能

定義Node節點

private class Node{
        public E e;
        public 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();
        }
    }

向鏈表中添加元素

Java數據結構之鏈表的相關知識有哪些

具體代碼實現:

 //向鏈表中間添加元素
    //在鏈表的index(0-based)位置添加新的元素e
    public void add(int index, E e){
        if(index < 0 || index > size)
            throw new IllegalArgumentException("Add failed.Illeagl failed.");
        Node prev = dummyHead;
        for (int i = 0; i < index; i++) {
            prev = prev.next;
        }
//            Node node = new Node(e);
//            node.next = prev.next;
//            prev.next = node;

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

向鏈表中刪除元素

Java數據結構之鏈表的相關知識有哪些

具體代碼實現:

//鏈表中刪除index(0-based)位置的元素,返回刪除的元素
    public E remove(int index){
        if(index < 0 || index >= size)
            throw new IllegalArgumentException("Remove failed.Illeagl failed.");
        Node pre = dummyHead;
        for (int i = 0; i < index; i++) {
            pre = pre.next;
        }
        Node retNode = pre.next;
        pre.next = retNode.next;
        retNode.next = null;
        size--;

        return retNode.e;
    }

鏈表功能的實現及測試類

public class LinkedList<E> {
    private class Node{
        public E e;
        public 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 LinkedList(){
        dummyHead = new Node(null, null);
        size = 0;
    }

    //獲取鏈表中的元素個數
    public int getSize(){
        return size;
    }

    //返回鏈表是否為空
    public boolean isEmpty(){
        return size == 0;
    }

    //向鏈表頭添加元素
    public void addFirst(E e){
//        Node node = new Node(e);
//        node.next = head;
//        head = node;

        add(0, e);
    }

    //向鏈表中間添加元素
    //在鏈表的index(0-based)位置添加新的元素e
    public void add(int index, E e){
        if(index < 0 || index > size)
            throw new IllegalArgumentException("Add failed.Illeagl failed.");
        Node prev = dummyHead;
        for (int i = 0; i < index; i++) {
            prev = prev.next;
        }
//            Node node = new Node(e);
//            node.next = prev.next;
//            prev.next = node;

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

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

    //獲得鏈表的第index(0-based)個位置的元素
    //在鏈表中不是一個常用的操作
    public E get(int index){
        if(index < 0 || index > size)
            throw new IllegalArgumentException("Add failed.Illeagl failed.");
        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(0-based)個位置的元素
    //在鏈表中不是一個常用的操作
    public void set(int index, E e){
        if(index < 0 || index > size)
            throw new IllegalArgumentException("Add failed.Illeagl failed.");
        Node cur = dummyHead.next;
        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }
        cur.e = e;
    }

    //查找鏈表中是否有元素e
    public boolean contains(E e){
        Node cur = dummyHead.next;
        while(cur != null){
            if(cur.e.equals(e)){
                return true;
            }
            cur = cur.next;
        }
        return false;
    }

    //鏈表中刪除index(0-based)位置的元素,返回刪除的元素
    public E remove(int index){
        if(index < 0 || index >= size)
            throw new IllegalArgumentException("Remove failed.Illeagl failed.");
        Node pre = dummyHead;
        for (int i = 0; i < index; i++) {
            pre = pre.next;
        }
        Node retNode = pre.next;
        pre.next = retNode.next;
        retNode.next = null;
        size--;

        return retNode.e;
    }

    //從鏈表中刪除第一個元素
    public E removeFirst(){
        return remove(0);
    }

    //從鏈表中刪除最后一個元素
    public E removeLast(){
        return remove(size - 1);
    }
    @Override
    public String toString() {
        StringBuilder res = new StringBuilder();

//        Node cur = dummyHead.next;
//        while (cur != null){
//            res.append(cur + "->");
//            cur = cur.next;
//        }

        for (Node cur = dummyHead.next; cur != null; cur = cur.next){
            res.append(cur + "->");
        }
        res.append("null");
        return res.toString();
    }
    public static void main(String[] args) {
        LinkedList<Integer> linkedList = new LinkedList<>();
        for (int i = 0; i < 5; i++) {
            linkedList.addFirst(i);
            System.out.println(linkedList);
        }

        linkedList.add(2, 666);
        System.out.println(linkedList);


        linkedList.remove(2);
        System.out.println(linkedList);

        linkedList.removeFirst();
        System.out.println(linkedList);

        linkedList.removeLast();
        System.out.println(linkedList);
    }
}

二、鏈表實現棧操作

使用第二章中的棧接口,創建第一節中的鏈表實現對象,實現棧的操作,具體如下:

public class LinkedListStack<E> implements Stack<E> {
    private LinkedList<E> list;
    public LinkedListStack(){
        list = new LinkedList<>();
    }

    @Override
    public int getSize() {
        return list.getSize();
    }

    @Override
    public boolean isEmpty() {
        return list.isEmpty();
    }

    @Override
    public void push(E value) {
        list.addFirst(value);
    }

    @Override
    public E pop() {
        return list.removeFirst();
    }

    @Override
    public E peek() {
        return list.getFirst();
    }

    @Override
    public String toString() {
        StringBuilder res = new StringBuilder();
        res.append("Stack : top");
        res.append(list);
        return res.toString();
    }

    public static void main(String[] args) {
        LinkedListStack<Integer> stack = new LinkedListStack<>();
        for (int i = 0; i < 5; i++) {
            stack.push(i);
            System.out.println(stack);
        }

        stack.pop();
        System.out.println(stack);
    }
}

三、鏈表實現隊列操作

使用第二章中的隊列接口,創建無頭節點的鏈表實現隊列操作,具體如下:

public class LinkedListQueue<E> implements Queue<E> {
    private class Node{
        public E e;
        public LinkedListQueue.Node next;

        public Node(E e, LinkedListQueue.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 head,tail;
    private int size;
    public LinkedListQueue(){
        head = null;
        tail = null;
        size = 0;
    }

    @Override
    public int getSize() {
        return size;
    }

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

    @Override
    public void enqueue(E e) {
        if(tail == null){
            tail = new Node(e);
            head = tail;
        }else{
            tail.next = new Node(e);
            tail = tail.next;
        }
        size++;
    }

    @Override
    public E dequeue() {
        if (isEmpty())
            throw new IllegalArgumentException("Cannot dequeue form any empty queue.");
        Node retNode = head;
        head = head.next;
        retNode.next = null;
        if (head == null)
            tail = null;
        return retNode.e;
    }

    @Override
    public E getFront() {
        if (isEmpty())
            throw new IllegalArgumentException("Cannot getFront form any empty queue.");
        return head.e;
    }

    @Override
    public String toString() {
        StringBuilder res = new StringBuilder();
        res.append("Queue : front ");

        Node cur = head;
        while (cur != null){
            res.append(cur + "->");
            cur = cur.next;
        }

        res.append("Null tail");
        return res.toString();
    }

    public static void main(String[] args) {
        LinkedListQueue<Integer> queue = new LinkedListQueue<>();
        for (int i = 0; i < 10; i++) {
            queue.enqueue(i);
            System.out.println(queue);

            if(i % 3 == 2){
                queue.dequeue();
                System.out.println(queue);
            }
        }

    }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Java數據結構之鏈表的相關知識有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汪清县| 眉山市| 蕲春县| 慈溪市| 宿松县| 咸阳市| 施秉县| 遂宁市| 虎林市| 大同市| 湛江市| 仪征市| 奉节县| 布尔津县| 琼海市| 饶河县| 盐亭县| 甘肃省| 资源县| 宜阳县| 拉孜县| 诸暨市| 芜湖市| 廉江市| 瑞金市| 长寿区| 衡山县| 乐清市| 高雄县| 田阳县| 株洲县| 铁岭县| 阿勒泰市| 香格里拉县| 旺苍县| 鹿邑县| 杨浦区| 黑龙江省| 合水县| 浙江省| 仁寿县|