数据结构头插法和尾插法建立单链表

#include <stdlib.h>#include<stdio.h>typedef struct node{ int data; struct node *next;}*Listlin

腾讯文库数据结构头插法和尾插法建立单链表数据结构头插法和尾插法建立单链表