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

溫馨提示×

溫馨提示×

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

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

C++如何自定義單向鏈表ListNode

發布時間:2022-03-23 11:22:35 來源:億速云 閱讀:320 作者:小新 欄目:開發技術

小編給大家分享一下C++如何自定義單向鏈表ListNode,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

 鏈表有兩種:

  •  1、帶頭結點,頭結點存放的是鏈表的長度,從第二個節點開始存放數據。

  •  2、不帶頭結點,沒有存放鏈表長度的節點,從頭結點開始就存放數據。

小編這里定義的鏈表是第二種。

直接上代碼:

#include <iostream>
#include <assert.h>
#include <vector>
#include <algorithm>
using namespace std;

struct ListNode
{
    int val;   //當前節點的值
    ListNode *next;   //指向下一個節點的指針
    ListNode() : val(0), next(nullptr) {}   //初始化當前結點值為默認值0,指針為空
    ListNode(int x) : val(x), next(nullptr) {}    //初始化當前結點值為x,指針為空
    ListNode(int x, ListNode *next) : val(x), next(next) {}    //初始化當前結點值為x,下一個績點為next
};


class Solution
{
public:
    //創建長度為len的單向鏈表
    void createList(ListNode *head,int len){
        for(int i=1;i<len;i++)   //len-1個節點,加上head節點共len個
        {
            ListNode *node=new ListNode;   //每次都需要實例化一個ListNode
            node->val=i*i;    //為節點賦值
            node->next=nullptr;
            head->next=node;   //head指向下一個節點(即當前節點)
            head=node;     //將當前節點設為head
        }
        cout<<"Create a new ListNode with len of "<<len<<" successfully."<<endl;
    }

    //打印鏈表(順序)
    void printList(ListNode *head){
        if(head==nullptr)        
            cout<<"empty list."<<endl;
        else
            while(head!=nullptr)
            {
                cout<<head->val<<'\t';
                head=head->next;
            }
        cout<<endl;
    }

    //打印鏈表(逆序)
    void reversePrintList(ListNode *head){
        //因為ListNode只能根據next單向索引,無法逆向回溯,所以只能將節點數值存在vector中反向輸出。
        //目前只想到了這種方法。
        if(head==nullptr)
        {
            cout<<"empty list."<<endl;
            exit(1);
        }
        else
        {
            vector<int> node;
            while(head!=nullptr)
            {
                node.push_back(head->val);
                head=head->next;
            }
            while(!node.empty())
            {
                //先輸出node中的最后一個元素,再刪除最后一個元素。而不是先對node做reverse再正向輸出。
                cout<<node.back()<<'\t';
                node.pop_back();
            }
            cout<<endl;
        }
    }

    //在鏈表尾節點添加一個新節點
    void pushBack(ListNode *head,int val){
        ListNode *node=new ListNode(val,nullptr);   //要添加的新節點
        if(head==nullptr)
            head=node;
        else
        {
            while(head->next!=nullptr)    //while循環結束后head就是尾結點了
                head=head->next;
            head->next=node;
        }
    }

    //更改鏈表尾節點數值
    void changeBackValue(ListNode *head,int val){
        assert(head!=nullptr);
        while(head->next!=nullptr)    //while循環結束后head就是尾結點了
            head=head->next;
        head->val=val;
    }

    //刪除鏈表尾節點
    void popBack(ListNode *head){
        assert(head!=nullptr);
        while(head->next->next!=nullptr)   //while循環結束后head是倒數第二個節點,其next指向尾節點
            head=head->next;
        head->next=nullptr;   //刪除尾節點
        //注意不要直接delete尾結點,因為尾結點的next是nullptr,直接delete nullptr會輸出很多亂碼。
    }

    //刪除鏈表中節點值等于指定值的節點(不包括頭節點)
    void deleteNode(ListNode *head, int val) {
        assert(head != nullptr);
        ListNode *node = head;    //copy一份鏈表
        while (head->next != nullptr)
        {
            if (head->next->val == val)
                node->next=head->next->next;
            head=head->next;
            node=node->next;
        }
    }

    //清空列表
    void clearList(ListNode *head){
        head->next=nullptr;   //清楚頭結點之后的所有節點
        //清空列表的功能一直不知道怎么實現,頭結點不知道怎么刪除。
    }
};


int main()
{
    Solution solution;
    ListNode *listnode=new ListNode(5,nullptr);   //初始化鏈表的head節點
    solution.printList(listnode);           // 5
    solution.createList(listnode,5);   
    solution.printList(listnode);           // 5       1       4       9       16
    solution.pushBack(listnode,30);
    solution.printList(listnode);           // 5       1       4       9       16      30
    solution.reversePrintList(listnode);    // 30      16      9       4       1       5
    solution.changeBackValue(listnode,88);
    solution.printList(listnode);           // 5       1       4       9       16      88
    solution.popBack(listnode);
    solution.printList(listnode);           // 5       1       4       9       16
    solution.pushBack(listnode,101);
    solution.printList(listnode);           // 5       1       4       9       16      101
    solution.deleteNode(listnode,9);
    solution.printList(listnode);           // 5       1       4       16      101
    solution.clearList(listnode);
    solution.printList(listnode);           // 5
    cout<<"END"<<endl;
    return 0;
}

程序輸出:

5
Create a new ListNode with len of 5 successfully.
5       1       4       9       16
5       1       4       9       16      30
30      16      9       4       1       5
5       1       4       9       16      88
5       1       4       9       16
5       1       4       9       16      101
5       1       4       16      101
5
END

以上是“C++如何自定義單向鏈表ListNode”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

c++
AI

武乡县| 景宁| 大竹县| 恭城| 邻水| 慈溪市| 麦盖提县| 合水县| 弋阳县| 大埔区| 宣恩县| 北票市| 息烽县| 新巴尔虎右旗| 长寿区| 安西县| 澳门| 定南县| 基隆市| 永清县| 海安县| 罗源县| 奉贤区| 双辽市| 河西区| 藁城市| 玉溪市| 水富县| 上高县| 浑源县| 旬阳县| 临湘市| 永清县| 望城县| 高尔夫| 沙洋县| 海淀区| 蒲江县| 兴和县| 年辖:市辖区| 南木林县|