永发信息网

需要用c程序编写单链表并且能在计算机上用VisualC++输入输出的源代码。

答案:1  悬赏:80  手机版
解决时间 2021-03-28 20:54
  • 提问者网友:温旧梦泪无声
  • 2021-03-27 22:30
需要用c程序编写单链表并且能在计算机上用VisualC++输入输出的源代码。
最佳答案
  • 五星知识达人网友:摆渡翁
  • 2021-03-27 23:22



#include
#include


typedef struct node{
int data;
struct node *next;
} *LinkedList;


//尾插法(含头结点)创建单链表
LinkedList LinkedListCreate(int a[5])
{
int i;
LinkedList L,tail,p;
//动态内存分配
L=(struct node*)malloc(sizeof(struct node));
tail=L;
for(i=0; i<5; i++)
{
p=(struct node*)malloc(sizeof(struct node));
p->data=a[i];
tail->next=p;
tail=p;
}
tail->next=NULL;
return L;
}
//输出函数
void LinkedListPrint(LinkedList L)
{
LinkedList p;
p=L->next;
while(p!=NULL)
{
printf("%d ",p->data);
p=p->next;
}
}


void main()
{
int a[5];
int i;
LinkedList L;
for(i=0;i<5;i++)
scanf("%d",&a[i]);
L=LinkedListCreate(a);
LinkedListPrint(L);

printf("
");}

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯