溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-03-15 09:10:01 來(lái)源:億速云 閱讀:174 作者:iii 欄目:開(kāi)發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

一、什么是鏈表

鏈表的概念

鏈表是一種物理存儲(chǔ)結(jié)構(gòu)上非連續(xù)存儲(chǔ)結(jié)構(gòu),數(shù)據(jù)元素的邏輯順序是通過(guò)鏈表中的引用鏈接次序?qū)崿F(xiàn)的 。

鏈表的結(jié)構(gòu)

鏈表結(jié)構(gòu)分為8種:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

這里我們只講最下面兩種,因?yàn)樵诠ぷ髦?、業(yè)務(wù)里、考試題、刷到的鏈表題、面試題里面都是用到這兩種鏈表。 

鏈表如何存儲(chǔ)數(shù)據(jù)

鏈表是由一個(gè)一個(gè)節(jié)點(diǎn)組成的。(這里我們以單鏈表為例)

什么叫做節(jié)點(diǎn)?

節(jié)點(diǎn)分為兩個(gè)域 ,假設(shè)一個(gè)叫做val域,一個(gè)叫做next域。

val:數(shù)據(jù)域

next:下一個(gè)節(jié)點(diǎn)的地址

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

鏈表的實(shí)現(xiàn)  

//ListNode代表一個(gè)節(jié)點(diǎn)
 
class ListNode{
    public int val;
    public ListNode next;
 
    //構(gòu)造方法
    public ListNode(int val){
        this.val = val;
    }
}
//MyLinkedList 代表這是一個(gè)鏈表
 
public class MyLinkedList {
    public ListNode head;//鏈表的頭引用,所以定義在鏈表里,head是鏈表的頭,不是節(jié)點(diǎn)的頭,節(jié)點(diǎn)只有兩個(gè)屬性,一個(gè)屬性是val值,一個(gè)屬性是next值,所以不能定義在ListNode類(lèi)里面
    ListNode listNode = new ListNode(2);//節(jié)點(diǎn)實(shí)例化,val域賦值為2
}

窮舉法創(chuàng)建鏈表

/MyLinkedList 代表這是一個(gè)鏈表
public class MyLinkedList {
    public ListNode head;//鏈表的頭引用,所以定義在鏈表里
    public  void createList(){
        ListNode listNode0 = new ListNode(11);
        ListNode listNode1 = new ListNode(26);
        ListNode listNode2 = new ListNode(23);
        ListNode listNode3 = new ListNode(45);
        ListNode listNode4 = new ListNode(56);
        listNode0.next = listNode1;
        listNode1.next = listNode2;
        listNode2.next = listNode3;
        listNode3.next = listNode4;
        this.head = listNode0;
    }

打印鏈表

//打印鏈表
    public  void display(){
         ListNode cur = this.head;
         while (cur != null){
             System.out.print(cur.val+" ");
             cur = cur.next;
         }
        System.out.println();
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

查找是否包含關(guān)鍵字key是否在單鏈表當(dāng)中 

 //查找是否包含關(guān)鍵字key是否在單鏈表當(dāng)中
    public boolean contains(int key) {
        ListNode cur = this.head;
        while (cur != null) {
            if (cur.val == key) {
                return true;
            }
            cur = cur.next;
        }
        return false;
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

得到單鏈表的長(zhǎng)度:

//得到單鏈表的長(zhǎng)度
    public int size(){
        ListNode cur = this.head;
        int count = 0;
        while(cur != null){
            count++;
            cur = cur.next;
        }
        return count;
    }

 打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

頭插法

 //頭插法
 
    public void addFirst(int data) {
        ListNode node = new ListNode(data);
        if (this.head == null) {
            this.head = node;
        } else {
            node.next = this.head;
            head = node;
        }
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

尾插法

//尾插法
 
    public void addLast(int data){
        ListNode node = new ListNode(data);
        ListNode cur = this.head;
        if(this.head == null){
            this.head = node;
        }else {
            while(cur.next != null){
                cur = cur.next;
            }
            cur.next = node;
 
        }
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

任意位置插入,第一個(gè)數(shù)據(jù)節(jié)點(diǎn)為0號(hào)下標(biāo)

public ListNode findIndex(int index){
        ListNode cur = this.head;
        while(index -1 != 0){
            cur = cur.next;
            index--;
        }
        return cur;
 
    }
    //任意位置插入,第一個(gè)數(shù)據(jù)節(jié)點(diǎn)為0號(hào)下標(biāo)
    public void addIndex(int index,int data){
        if(index < 0 || index > size()){
            System.out.println("位置不合法");
            return;
        }
            if(index == 0){
                addFirst(data);
                return;
            }
            if(index == size()){
                addLast(data);
                return;
            }
 
            ListNode cur = findIndex(index);
            ListNode node = new ListNode(data);
            node.next = cur.next;
            cur.next = node;
 
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

刪除第一次出現(xiàn)關(guān)鍵字為key的節(jié)點(diǎn)

//刪除第一次出現(xiàn)關(guān)鍵字為key的節(jié)點(diǎn)
    public void remove(int key){
        if(this.head == null){
            System.out.println("沒(méi)有你要?jiǎng)h除的節(jié)");
            return;
        }
       if (this.head.val == key){
           this.head = this.head.next;
           return;
        }
       ListNode cur = this.head;
       while (cur.next != null){
           if(cur.next.val == key){
               cur.next = cur.next.next;
               return;
           }
           cur = cur.next;
       }
       if(cur.next == null){
           System.out.println("沒(méi)有該節(jié)點(diǎn)");
           return;
       }
 
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

刪除所有值為key的節(jié)點(diǎn)

//刪除所有值為key的節(jié)點(diǎn)
    public ListNode removeAllKey(int key){
        if(this.head == null) return null;
        ListNode prev = this.head;
        ListNode cur = this.head;
        while (cur != null){
            if(cur.val == key){
                prev.next = cur.next;
                cur = cur.next;
            }else{
                    prev = cur;
                    cur = cur.next;
            }
        }
        if(this.head.val == key){
            this.head = this.head.next;
        }
        return this.head;
 
    }

打印結(jié)果:

Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)

讀到這里,這篇“Java數(shù)據(jù)結(jié)構(gòu)鏈表的概念是什么與怎么實(shí)現(xiàn)”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI