文件名称:2
介绍说明--下载内容均来自于网络,请自行研究使用
单链表的插入和删除实验目的:
1、定义单链表的结点类型
2、通过单链表的定义掌握线性表的链式存储结构的特点;
3、熟悉单链表的建立以及插入、删除等基本操作。
-# include <stdio.h>
# include<malloc.h>
# define ND sizeof(struct List)
struct List
{int data
struct List*next
}
void main()
{ int n,i=1,e,a
struct List*head
struct List*p,*q
q=head=p=(struct List*)malloc(ND)
1、定义单链表的结点类型
2、通过单链表的定义掌握线性表的链式存储结构的特点;
3、熟悉单链表的建立以及插入、删除等基本操作。
-# include <stdio.h>
# include<malloc.h>
# define ND sizeof(struct List)
struct List
{int data
struct List*next
}
void main()
{ int n,i=1,e,a
struct List*head
struct List*p,*q
q=head=p=(struct List*)malloc(ND)
(系统自动生成,下载前可以参看下载内容)
下载文件列表
实验二.txt