大二小白求助 数据结构单链表的插入和删除一直报错,看不明白啊
就写了这么一点好多错误,哭了
#include <stdlib.h>
#include <stdio.h>
typedef int ElemType;
typedef struct LNode{
ElemType data;
struct LNode *next;
}LNode,*LinkList;
void CreateList_L(LinkList &L,int n){
int i;
L=(LinkList)malloc(sizeof (LNode));
L->next=NULL;
for(i=n;i>0;--i){
p=(LinkList)malloc(sizeof (LNode));
scanf(&p->data);
p->next=L->next;L->next=p;
}
下面是编译时候的报错:
E:\nue\2.cpp(13) : error C2065: 'p' : undeclared identifier
E:\nue\2.cpp(13) : error C2440: '=' : cannot convert from 'struct LNode *' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
E:\nue\2.cpp(14) : error C2227: left of '->data' must point to class/struct/union
E:\nue\2.cpp(15) : error C2227: left of '->next' must point to class/struct/union
E:\nue\2.cpp(15) : error C2440: '=' : cannot convert from 'int' to 'struct LNode *'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
E:\nue\2.cpp(18) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.
对啊。你的变量p,在哪里定义了?没有定义,所以报错。
你定一下就可以了。
不要那么轻易的放弃。其实你距离成功,就差那么一点点了。 #include <stdio.h>
#include <stdlib.h>
typedef int ElemType ;
typedef struct node {
ElemType data ;
struct node * next ;
} LNode , * LinkList ;
void CreateList_L(LinkList * L , int n)
{
int i ;
LinkList p , q ;
for(i = 0 ; i < n ; i ++) {
if((p = (LinkList)malloc(sizeof (LNode)))) {
scanf("%d" , & p -> data) ;
if(! i) {
p -> next = p ;
* L = p ;
} else {
p -> next = * L ;
q -> next = p ;
}
q = p ;
} else {
* L = NULL ;
fprintf(stderr , "\n\n") ;
fprintf(stderr , "Error : malloc()\n") ;
}
}
} wwhywhy 发表于 2019-10-19 15:06
对啊。你的变量p,在哪里定义了?没有定义,所以报错。
你定一下就可以了。
不要那么轻易的放弃。其实你 ...
嗯嗯,谢谢
页:
[1]