显示功能不显示数据

时间:2013-11-11 13:33:12

标签: c++

我正在做树。它没有显示。

我有一个字符串长度4说SHAM现在每个字符S H A M有四个指针并且在其中放置NULL。但是当我编译并运行display()函数不起作用时。

struct node
{
    string info;
    struct node **next;
} *front, *rear;

void enqueue(string s)
{
    node *p, *temp;
    p=new node[sizeof(node)];

            stuff goes here... 
    }      
}

void display()
{
    int k = 0;
    node *t, *temp;
    t = front;
    if(front == NULL || rear == NULL)
    {
        cout<<"\nQueue Empty!!!";
    }
    else
    {
        temp=t;
        while(t!= NULL)
        {
            if(t->next[k] != NULL)
            {
                temp=t->next[k]; 

                cout<<temp->info<<" ";
            }

            k++;

            if(k==n.length())
            {           
                k = 0;
                t = t->next[k];
                temp = t;
            }    
        }       
    }    
}

int main(int argc, char** argv) 
{
    int ch, len, x;
    string string1;
    rear = NULL;
    front = NULL;

    cout << "\n1. Insert\n2. Exit\n";
    cout << "\nEnter Your Choice: ";
    cin >> ch;

    switch(ch)
    {
        case 1:
            cout << "\nEnter The String: ";
            cin >> n;
            len = n.length();
            enqueue(n);
            cout << " len " << len;

            for(int p=1;p<=len;p++)
                bnod+=pow(len,p);

            cl = 0;
            for (x = 0; x < len; x++)
            {
                string1=n.at(x);
                enqueue(string1);
                cl++;
            }
            display();

            cout << "\n########################\n";
            break;

        case 2:
            exit(0);
            break;

        default:
            cout << "\nWrong Choice!!! Try Again.";
    }

    return 0;
}

2 个答案:

答案 0 :(得分:2)

这是new类型的错误方法:

p = new node[sizeof(node)]; // p = new node; is enough

您不需要[sizeof(node)]部分。另一方面,我无法看到您如何初始化next

所以,我相信此代码无效。

答案 1 :(得分:0)

我认为你是以错误的方式开始的:你的节点结构包含指向指针的指针。

struct node
{
    string info;
    struct node **next;
};

这可能是代码没有意义的原因。您可以使用(通常以这种方式做事)一个简单的指针:

struct node
{
    string info;
    struct node *next;
};

这样一切看起来都更易于管理:

node a;
a.info = "abc"; //this is your info
a.next = NULL //

这是与树中下一个节点的连接

使用指向指针的指针来确定数据结构中的下一个元素是没有意义的(据我所知,从你的例子中可以看出),你必须小心内存分配。

希望这有帮助