1. 首页
  2. 编程语言
  3. C
  4. C语言创建列表

C语言创建列表

上传者: 2020-08-22 02:06:16上传 DOC文件 24.5KB 热度 23次
题目:创建一个链表。1.程序分析: 2.程序源代码:/*creat a list*/#include "stdlib.h"#include "stdio.h"struct list{ int data;struct list *next;};typedef struct list node;typedef node *link;void main(){ link ptr,head;int num,i;ptr=(link)malloc(sizeof(node));ptr=head;printf("please input 5 numbers==>\n");for(i=0;i
用户评论
码姐姐匿名网友 2020-08-22 02:06:16

可以用到还可以