C++代码运行出错:ld returned 1 exit status

论坛 期权论坛 期权     
末了你看春风   2018-4-26 14:07   2685   1
#include
using namespace std;
typedef struct BiNode{
    int data;
    struct BiNode *lchild,*rchild;//左右孩子指针
    }BiNode,*BiTree;
BiNode* create(string &s,int &pos)//构造一棵二叉树
{   pos++;
    BiNode *t;
    t=n...#include
using namespace std;
typedef struct BiNode{
    int data;
    struct BiNode *lchild,*rchild;//左右孩子指针
    }BiNode,*BiTree;
BiNode* create(string &s,int &pos)//构造一棵二叉树
{   pos++;
    BiNode *t;
    t=new BiNode;
    t->data=s[pos];
    t->lchild=create(s,pos);
    t->rchild=create(s,pos);
    return t;
}
void PreOrder(BiNode *T)
{
    if(T!=NULL){
        coutlchild);//递归遍历左子树
        PreOrder(T->rchild);//递归遍历右子树

    }
}
int mian()
{   string s;
    s="ABCDE";
    int pos;
    pos=-1;
    create(s,pos);
    return 0;

}
有没有大神啊,我这个老是报错啊,改了一个晚上,疯掉了啊展开
分享到 :
0 人收藏

1 个回复

倒序浏览
2#
热心网友  15级至尊 | 2018-4-30 01:48:10 发帖IP地址来自
我记得这个问题是因为之前跑的程序没有完全关掉,你就跑了这个,你应该先关掉上一个
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:
帖子:
精华:
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP