#include<iostream>
#include<conio.h>
#include<string.h>
#define OK 1
#define MAXSIZE 100
#define ERROR -1
using namespace std;
typedef int Status;
#define OK 1
typedef struct
{
char name[5];
float price;
}Book;
typedef Book ElemType;
typedef struct LNode
{
Book data;
LNode *next;
}LNode,*List;
Status InitList(List &L)
{
L=new LNode();
/*if(!B)
exit(-1);
else
*/
L->next=NULL;
return OK;
}
Status GetElem(int i,List L,ElemType &e)
{
List P=L->next; int j=1;
while(P&&j<1)
{
P=P->next;
++j;
}
if(!P||j<i)
return ERROR;
e=P->data;
return OK;
}
Status QianCha(List Head,List L,List shou)
{
if(Head->next=NULL)
{
Head->next=L;
L->next=shou;
}
else
{
Head->next=L->next;
L->next=NULL;
}
return 0;
}
void Q(LNode * &L,int n)
{
L=new LNode();
L->next=NULL;
cout<<L->next;
for(int i=0;i<n;i++)
{
LNode *p=new LNode();
p->next=L->next;
L->next=p;
}
}
int main()
{
List L;
L=*(new List());
LNode * haha;
Q(haha,4);
getch();
return 0;
}
我想利用
主函数中
List L;
L=*(new List());测试下new的用法。
我想的是 ,建立L结构体指针,申请new List类型空间。报错。我分析,分配空间,要用这个空间的地址。经过测验,想法是成立的。
然后我调试程序,发现
很奇怪,new List()不应该返回一个地址吗,不返回地址,L的值怎么改?毕竟L是地址,左右都是地址,才可以赋值成功的嘛