0

为了更好地理解该语言,我正在研究 C++ 中的单链表类,但我碰壁了。

可悲的是,标题几乎是我所能想到的所有错误。这里这里似乎都提出了一些我试图实施但无济于事的答案。

主.cpp:

#include <iostream>
#include <string>
#include "LinkedList.h"
#include "Node.h"

using namespace std;

int main()
{
    LinkedList<string> moo2;
    moo2.insertAtFront("one");
    moo2.insertAtFront("two");
    moo2.insertAtFront("three");
    moo2.insertAtFront("four");
    cout<<moo2.toString() << endl;

    cin.ignore(1);
    return 0;
}

链表.h:

#pragma once
#include "Node.h"
#include <string>
#include <sstream>

template <class type>
class LinkedList
{
private:
    int size;
    node<type> *head; 

public:
    LinkedList()
    {
        head = NULL;
        //head = (node<type>*)malloc(sizeof(node<type>));
        size = 0;
    }
    /*LinkedList(const LinkedList<type> &x)
    {
        head = NULL;
        //head = (node<U>*)malloc(sizeof(node<U>));
        size = 0;
    }*/

    bool insertAtFront(type obj)
    {
        node<type> *temp;
        temp = (node<type>*)malloc(sizeof(node<type>));
        temp->data = obj;
        temp->next = head;
        head = temp;

        size++;
        return true;
    }

    std::string toString()
    {
        std::stringstream value;
        node<type> *i = head;
        while(i != NULL)
        {
            value << i->data;
            if(i->next != NULL)
                value << ", ";
            i = i->next;
        }
        return value.str();
    }
};

节点.h:

#pragma once
#include <string>

template <class type>
struct node
{
    type data;
    node *next;

    node() 
    {
        data = NULL;
        next = NULL;
        //data = new type();
        //next = (node<U>*)malloc(sizeof(node<U>));
    }
    node(type)
    {
        data = type;
        next = NULL;
        //next = (node<U>*)malloc(sizeof(node<U>));
    }
    node(type, node *)
    {
        data = type;
        next = next2;
    }
    /*node(const node &x)
    {
        data = new type(x->data);
        next = new x->next;
    }*/
};

我不知道(无论如何可以肯定)哪个变量正在创建错误,因为它可能是 LinkedList 的 *head(或 head->data 或 head->next),也可能是节点 *next。

但真正奇怪的是,对于我迄今为止尝试过的任何其他参数化类型(int、double、long、char、char*),代​​码都可以正常工作。事实上,我什至可以使用 char* 来实现与字符串列表相同的目标。尽管如此,我还是想知道为什么我会遇到这些问题以及可以采取的任何措施来解决它。

4

1 回答 1

3

使用new而不是malloc.

malloc只是为给定的类型或大小分配内存,它不会调用构造函数。

于 2013-08-17T09:38:10.387 回答