数据结构头插法和尾插法建立单链表
#include <stdlib.h>#include<stdio.h>typedef struct node{ int data; struct node *next;}*Listlin
数据结构头插法和尾插法建立单链表