0

我的老师给司机上课以完成一个程序,因此我不确定如何编写插入函数。

给我带来麻烦的线路:

you.Insert(me,0);

you用于默认构造函数并且me用于显式值构造函数,因此该行应该创建一个you包含me.

我不知道如何编写参数来访问我的插入功能

void WRD::Insert( ?, int new_data)

我将包括我拥有的显式构造函数,任何理解这一点的洞察力都会有所帮助。(包括insert根据我给出的示例应该是什么样子或做什么的示例。)

WRD::WRD(const string & s)
{
    cout<<"one called\n";
    front = 0;
    for(unsigned i=0; i<s.length(); i++)
    {
        AddChar(s[i]);
    }
}


class node
{
public:
    char symbol;  
    node *   next; 
};

v

oid Insert(node * &ptr, int new_data)
{
    node *new_ptr = new node;

    new_ptr -> data = new_data;
    new_ptr -> next = 0;  //always initialize a pointer

    if (Empty(ptr))
    {
        ptr = new_ptr;
    }
    else if (new_ptr->data <= ptr->data)
    {
        new_ptr->next = ptr;
        ptr = new_ptr;
    }
    else
    {
        node *fwd_ptr=ptr, *pre_ptr=ptr;

        while(fwd_ptr!=0 && (fwd_ptr->data < new_ptr->data))
        {
            pre_ptr = fwd_ptr;
            fwd_ptr = fwd_ptr->next;
        }

        if (fwd_ptr == 0)
        {
            pre_ptr->next = new_ptr;
        }
        else
        {
            new_ptr->next = fwd_ptr;
            pre_ptr->next = new_ptr;
        }
    }
}
4

1 回答 1

0

像这样我想(假设我理解你的正确)

void WRD::Insert(const WRD& w, int new_data)

它可能有助于显示更多您的驱动程序,特别是如何声明youme声明。

于 2013-10-09T21:35:48.060 回答