Pri*_*bar 0 c++ linked-list segmentation-fault nodes
我正在尝试编写链接列表中的插入和删除代码。这是我在单链表中基本插入和删除节点的代码。代码中没有错误,但终端上的输出显示分段错误。有人可以解释为什么我会出现分段错误吗?我做了什么改变来消除故障。我认为分段错误出现在删除部分。请帮忙。
// class is a type of user defined datatype
class Node {
    public:
    int data;
    Node* next;
    //constructor
    Node(int data) {
        this -> data = data;
        this -> next = NULL;
    }
    // destructor
    ~Node() {
        int value = this -> data;
        //memory free krr rhe hain
        if(this -> next != NULL){
            delete next;
            this -> next = NULL;
        }
        cout << "memory is free for node with data" << value << endl;
    }
};
void insertAtHead(Node* &head, int data) {
    // creating new node called temp of type Node 
    Node* temp = new Node(data);
    temp -> next = head;
    head = temp;
}
void insertAtTail(Node* &head, Node* &tail, int data) {
    // //New node create
    // Node* temp = new Node(data);
    // tail -> next = temp;
    // tail = temp;
    Node* temp = new Node(data);
    if (head == nullptr) { // If this is the first node of the list
        head = temp;
    } else { // Only when there is already a tail node
        tail -> next = temp;
    }
    tail = temp;
}
void insertAtPosition(Node* &tail, Node* &head, int position, int data) {
    // Insert at starting
    if(position == 1) {
        insertAtHead(head, data);
        return;
    }
    // Code for inserting in middle
    Node* temp = head;
    int cnt = 1;
    while(cnt < position-1) {
        temp = temp -> next;
        cnt++;
    }
    // Creating a node for data
    Node* nodeToInsert = new Node(data);
    nodeToInsert -> next = temp -> next;
    temp -> next = nodeToInsert;
    // Inserting at last position (tail) 
    if(temp -> next == NULL) {
        insertAtTail(head,tail, data);
        return;
    }
}
void deleteNode(int position, Node* &head) {
    
    //deleting first or starting node
    if(position == 1) {
        Node* temp = head;
        head = head -> next;
        //memory free start node
        temp -> next = NULL;
        delete temp;
    } else {
        // deleting any middle node
        Node* curr = head;
        Node* prev = NULL;
        int cnt = 1;
        while(cnt <= position) {
            prev = curr;
            curr = curr -> next;
            cnt++;
        }
        prev -> next = curr -> next;
        curr -> next = NULL;
        delete curr;
    }
}
void print(Node* &head) {
    Node* temp = head;
    while(temp != NULL) {
        cout << temp -> data << " ";
        temp = temp -> next;
    }
    cout << endl;
}
int main() {
    Node* head = nullptr; // A list has a head
    Node* tail = head; //  a tail.
    insertAtHead(head, 10); // pass the head
    insertAtTail(head, tail, 20);
    insertAtTail(head, tail, 30);
    insertAtHead(head, 5);
    print(head);  // Print the whole list
    cout << "head" << head -> data << endl;
    cout << "tail" << tail -> data << endl;
    deleteNode(1, head);
    print(head);
}
小智 6
问题不在于删除函数,因为即使将其注释掉也会导致分段错误。
问题是您正在初始化 tail = head ,它在开始时设置为 nullptr 。但是,当您 insertAtHead 时,您设置了 head 的值,但将 tail 保留为 nullptr。添加第一个节点时需要执行 tail = head (当 head == nullptr 时)。
请参阅下面的工作代码:
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
// class is a type of user defined datatype
class Node {
    public:
    int data;
    Node* next;
    //constructor
    Node(int data) {
        this -> data = data;
        this -> next = NULL;
    }
    // destructor
    ~Node() {
        int value = this -> data;
        //memory free krr rhe hain
        if(this -> next != NULL){
            delete next;
            this -> next = NULL;
        }
        cout << "memory is free for node with data" << value << endl;
    }
};
void insertAtHead(Node* &head,Node* &tail, int data) {
    // creating new node called temp of type Node 
    Node* temp = new Node(data);
    temp -> next = head;
    
    if (head == nullptr)
        tail = temp; //inializing tail
    
    head = temp;
}
void insertAtTail(Node* &head, Node* &tail, int data) {
    // //New node create
    // Node* temp = new Node(data);
    // tail -> next = temp;
    // tail = temp;
    Node* temp = new Node(data);
    if (head == nullptr) { // If this is the first node of the list
        head = temp;
    } else { // Only when there is already a tail node
        tail -> next = temp;
    }
    tail = temp;
}
void insertAtPosition(Node* &tail, Node* &head, int position, int data) {
    // Insert at starting
    if(position == 1) {
        insertAtHead(head,tail, data);
        return;
    }
    // Code for inserting in middle
    Node* temp = head;
    int cnt = 1;
    while(cnt < position-1) {
        temp = temp -> next;
        cnt++;
    }
    // Creating a node for data
    Node* nodeToInsert = new Node(data);
    nodeToInsert -> next = temp -> next;
    temp -> next = nodeToInsert;
    // Inserting at last position (tail) 
    if(temp -> next == NULL) {
        insertAtTail(head,tail, data);
        return;
    }
}
void deleteNode(int position, Node* &head) {
    
    //deleting first or starting node
    if(position == 1) {
        Node* temp = head;
        head = head -> next;
        //memory free start node
        temp -> next = NULL;
        delete temp;
    } else {
        // deleting any middle node
        Node* curr = head;
        Node* prev = NULL;
        int cnt = 1;
        while(cnt <= position) {
            prev = curr;
            curr = curr -> next;
            cnt++;
        }
        prev -> next = curr -> next;
        curr -> next = NULL;
        delete curr;
    }
}
void print(Node* &head) {
    Node* temp = head;
    while(temp != NULL) {
        cout << temp -> data << " ";
        temp = temp -> next;
    }
    cout << endl;
}
int main() {
    Node* head = nullptr; // A list has a head
    Node* tail = head; //  a tail.
    insertAtHead(head,tail, 10); // pass the head
    insertAtTail(head, tail, 20);
    insertAtTail(head, tail, 30);
    insertAtHead(head,tail, 5);
    print(head);  // Print the whole list
    cout << "head" << head -> data << endl;
    cout << "tail" << tail -> data << endl;
    deleteNode(1, head);
    print(head);
}
| 归档时间: | 
 | 
| 查看次数: | 230 次 | 
| 最近记录: |