听众
收听
2018-04-28
都用的是一级指针,都是在主函数里分配空间,为什么二叉树没有结果 //单链表 struct LNode{ int data; LNode *next; }; void creat_link(LNode *L,int n){ LNode *s,*d; L->next=NULL; d=L; ……} int main() { LNod
#include #include using namespace std; struct node{ char data; node *lchild; node *rchild; }; void creattree(node *T){ char c; cin>>c; if(c=='#'){ T=NULL
2018-04-26
#include #include using namespace std; struct node{ char data; node *lchild; node *rchild; }; void creattree(node *T){ char c; cin>>c; if(c=='#'){ T=NULL; } else{ T=new node; T->data=c;
以下为我的创建,我的问题时为什么栈的参数是“&”符号,二叉树用“**”,链表用“*” //栈 struct Sqstack{ int *base; int *top; int stacksize; }; int Init(Sqstack &S){ S.base=new int[MAXS
请问问题在哪 #include using namespace std; struct node{ char data; node *lchild; node *rchild; }; void creattree(node *T){ char c; cin>>c; if(c=='#'){ T=N
未知领域 来自火星
https://www.optbbs.com/?49887
这家伙很懒,什么都没有留
...
更多>
留言