后插法建立学生表,输出学生表,第x号学生的添加和删除,输出学生表的长度,删除指定年龄的学生信息
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct Student{
char id[20];
char name[20];
int age;
struct Student *next;
}Stu;
//单链表的创建 (尾插法)
Stu *create(int n){
Stu *head,*p,*tail;
head=(Stu*)malloc(sizeof(Stu));
head->next=NULL;
tail=head;
int i;
printf("请输入需要添加学生的ID,名字,年龄&#x