中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++怎么用類實現鏈表

c++
小億
114
2024-01-11 10:20:12
欄目: 編程語言

要使用類實現鏈表,首先需要定義一個節點類來表示鏈表的節點,然后再定義一個鏈表類來操作這些節點。

以下是一個使用類實現鏈表的示例:

#include <iostream>

// 鏈表節點類
class Node {
public:
    int data;
    Node* next;
    
    Node(int value) {
        data = value;
        next = nullptr;
    }
};

// 鏈表類
class LinkedList {
private:
    Node* head;  // 鏈表頭指針
public:
    LinkedList() {
        head = nullptr;
    }
    
    // 在鏈表尾部插入一個節點
    void append(int value) {
        Node* newNode = new Node(value);
        
        if (head == nullptr) {
            head = newNode;
        } else {
            Node* current = head;
            while (current->next != nullptr) {
                current = current->next;
            }
            current->next = newNode;
        }
    }
    
    // 在鏈表指定位置插入一個節點
    void insert(int value, int index) {
        if (index < 0) {
            std::cout << "Invalid index!" << std::endl;
            return;
        }
        
        Node* newNode = new Node(value);
        
        if (index == 0) {
            newNode->next = head;
            head = newNode;
        } else {
            Node* current = head;
            for (int i = 0; i < index - 1; i++) {
                if (current == nullptr) {
                    std::cout << "Invalid index!" << std::endl;
                    return;
                }
                current = current->next;
            }
            newNode->next = current->next;
            current->next = newNode;
        }
    }
    
    // 刪除鏈表指定位置的節點
    void remove(int index) {
        if (index < 0) {
            std::cout << "Invalid index!" << std::endl;
            return;
        }
        
        if (index == 0) {
            Node* temp = head;
            head = head->next;
            delete temp;
        } else {
            Node* current = head;
            for (int i = 0; i < index - 1; i++) {
                if (current == nullptr || current->next == nullptr) {
                    std::cout << "Invalid index!" << std::endl;
                    return;
                }
                current = current->next;
            }
            Node* temp = current->next;
            current->next = temp->next;
            delete temp;
        }
    }
    
    // 打印鏈表中的所有節點值
    void print() {
        Node* current = head;
        while (current != nullptr) {
            std::cout << current->data << " ";
            current = current->next;
        }
        std::cout << std::endl;
    }
};

int main() {
    LinkedList myList;
    
    myList.append(1);
    myList.append(2);
    myList.append(3);
    
    myList.insert(4, 1);
    
    myList.print();  // 輸出:1 4 2 3
    
    myList.remove(2);
    
    myList.print();  // 輸出:1 4 3
    
    return 0;
}

在上述示例中,我們首先定義了一個節點類Node,包含一個整型數據成員data和一個指向下一個節點的指針next

然后,我們定義了一個鏈表類LinkedList,包含一個指向鏈表頭部的指針head。鏈表類中實現了幾種基本的鏈表操作,如在鏈表尾部插入節點、在指定位置插入節點、刪除指定位置的節點以及打印鏈表中的所有節點。

main函數中,我們創建了一個鏈表對象myList,并進行了一些插入、刪除和打印操作,最后銷毀鏈表對象。

運行上述示例代碼,將輸出如下結果:

1 4 2 3
1 4 3

這表明使用類實現的鏈表能夠正常工作。

0
鄂尔多斯市| 宝山区| 邹城市| 昭觉县| 辽阳市| 瓦房店市| 四平市| 准格尔旗| 墨竹工卡县| 军事| 泗洪县| 凉城县| 沧州市| 景洪市| 双牌县| 文化| 永仁县| 稷山县| 柳州市| 阿合奇县| 金沙县| 烟台市| 汝南县| 荃湾区| 宿迁市| 寿宁县| 华安县| 大方县| 绿春县| 德江县| 平南县| 九寨沟县| 平山县| 凌源市| 克拉玛依市| 阿拉善右旗| 调兵山市| 山阴县| 定结县| 珠海市| 桦甸市|