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

溫馨提示×

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
卢湾区| 溧阳市| 土默特左旗| 清远市| 沂南县| 五峰| 高青县| 旅游| 江北区| 磴口县| 沙坪坝区| 高碑店市| 永春县| 平原县| 白银市| 台州市| 会东县| 丹凤县| 贵州省| 攀枝花市| 宁强县| 丹寨县| 兴义市| 清远市| 象州县| 滕州市| 晋中市| 桓仁| 清流县| 西城区| 广东省| 江都市| 镇安县| 庄河市| 浦北县| 建瓯市| 綦江县| 和静县| 新巴尔虎右旗| 商洛市| 襄汾县|