数据结构-单链表
数据结构单链表实现-运行环境vs2019
#include<stdio.h>
#include<stdlib.h>
#pragma warning(disable:4996);
struct node {
int data;
struct node* next;
};
typedef struct node Node;
typedef struct node* List;
void createheadlist(List *head, int n) {//头插法,本质就是链表


