注册 登录
编程论坛 C++教室

这个程序应该怎么画图来体现下啊??

z1214977263 发布于 2011-06-15 13:35, 322 次点击
Node *index=new Node;
        index->next=NULL;
        index->value=newValue;
        if( search(index) == NULL )
        {
            tail->next=index;
            tail=index;
            tail->next=NULL
0 回复
1