大家看一下,为啥不出现插入元素的地方而是输入元素n直接就结束了
#include<stdio.h>#include<stdlib.h>
typedef struct LNode
{
char data;
struct LNode;
LNode *next;
}
node,*LinkList;//线性表单链表的存储结构
void CreateList_L(LinkList &L,int n)
{
int i;
LinkList p;
L=(LinkList)malloc(sizeof(node));//假设p是LinkList型的变量,这行语句的意思是由系统生成一个L弄node型结点,同时将该节点的起始位置赋给指针p
for(i=n;i>0;--i)
{
p=(LinkList)malloc(sizeof(node));//生成新节结点
scanf(&p->data);
p->next=L->next;
L->next=p;
}
}//CreateList_l
void main()
{
LinkList L;
int n;
printf("请输入结点的个数");
scanf("%d",&n);
LinkList a;
CreateList_L(L,n);
}
本帖最后由 json 于 2017-8-7 14:12 编辑
typedef struct LNode
{
char data;
struct LNode;
LNode *next;
}
node,*LinkList;//线性表单链表的存储结构
这里 struct LNode ??; 是否需要成员没有写?
L=(LinkList)malloc(sizeof(node));//假设p是LinkList型的变量,这行语句的意思是由系统生成一个L弄node型结点,同时将该节点的起始位置赋给指针p
for(i=n;i>0;--i)
{
p=(LinkList)malloc(sizeof(node));//生成新节结点
scanf(&p->data);
p->next=L->next;
L->next=p;
}
scanf用法如下
int scanf(const char *format, ...)
这里的data是char类型,可以scanf("%c", &p->data);
这里在for循环里面,每次读取需要清空一下缓冲区,fflush(stdin);
然后是链表。。。
p->next=L->next;
L->next=p;
如果是头插入应该是p->next = h
h = p
如果是尾插入应该是t->next = p
t = p
这里的两个变量都在改变(注意)
页:
[1]