#include<stdio h>
#include<stdlib h>
#include<malloc h>
#include<string h>
struct Node
{
char name[20];
int score;
struct Node next;
}; 定义一个结构体 此结构体存储学生姓名 成绩以及指向该结构体的指针
typedef struct Node ListNode;
ListNode CreateList int n ; 创建链表函数 返回创建的链表的头指针
void InsertList Lis
相关下载链接:
//download.csdn.net/download/u013588101/6894727?utm_source=bbsseo