其他分享
首页 > 其他分享> > c – 使用邻接列表创建图形

c – 使用邻接列表创建图形

作者:互联网

#include<iostream>

using namespace std;

class TCSGraph{
    public:
        void addVertex(int vertex);
        void display();
        TCSGraph(){

            head = NULL;
        }
        ~TCSGraph();

    private:
        struct ListNode
        {
            string name;
            struct ListNode *next;
        };

        ListNode *head;
}

void TCSGraph::addVertex(int vertex){
    ListNode *newNode;
    ListNode *nodePtr;
    string vName;

    for(int i = 0; i < vertex ; i++ ){
        cout << "what is the name of the vertex"<< endl;
        cin >> vName;
        newNode = new ListNode;
        newNode->name = vName;

        if (!head)
        head = newNode;
        else
        nodePtr = head;
        while(nodePtr->next)
        nodePtr = nodePtr->next;

        nodePtr->next = newNode;

    }
}

void TCSGraph::display(){
    ListNode *nodePtr;
    nodePtr = head;

    while(nodePtr){
    cout << nodePtr->name<< endl;
    nodePtr = nodePtr->next;
    }
}

int main(){
int vertex;

cout << " how many vertex u wan to add" << endl;
cin >> vertex;

TCSGraph g;
g.addVertex(vertex);
g.display();

return 0;
}

解决方法:

你的addvertex方法有一个问题:

你有:

if (!head) 
    head = newNode; 
else
nodePtr = head;
while(nodePtr->next)
nodePtr = nodePtr->next;
nodePtr->next = newNode;

但它应该是:

if (!head) // check if the list is empty.
    head = newNode;// if yes..make the new node the first node.
else { // list exits.
    nodePtr = head;
    while(nodePtr->next) // keep moving till the end of the list.
        nodePtr = nodePtr->next;
    nodePtr->next = newNode; // add new node to the end.
}

另外,您没有使newNode的下一个字段为NULL:

newNode = new ListNode;
newNode->name = vName;
newNode->next= NULL; // add this.

这也是释放动态分配内存的好习惯.所以不要有一个空的析构函数

~TCSGraph();

你可以释放dtor中的列表.

编辑:更多的错误

你有一个失踪;课后宣布:

class TCSGraph{
......

}; // <--- add this ;

你的析构函数也只是声明了.没有def.如果你不想给任何def,你必须至少有一个空体.所以更换

~TCSGraph();

~TCSGraph(){}

标签:adjacency-list,c,data-structures,graph
来源: https://codeday.me/bug/20191007/1863859.html