- 1
- 0
- 约2.45千字
- 约 5页
- 2021-11-14 发布于江苏
- 举报
#include stdio.h
#include stdlib.h
typedef struct node
{
int data;
struct node *next;
}Lnode,*Linklist;
input(Lnode *p,int n)// 实现用键盘顺序输入链表数据
{
Lnode *s;int i,d;
printf(请输入数据:);
for(i=1;i=n;i++)
{
if(i==1)
{
原创力文档

文档评论(0)