尾插法建立单链表
表头插法函数是这么写的:void creat(NODE *head, int n){ //n是要插入结点的个数
NODE *p;
for (; n > 0; n--){
p = (NODE *)malloc(sizeof(NODE));
gets(p->name);
p->next = head->next;
head->next = p;
}
在原来基础上怎么改能变成“尾插法”,,,谢谢
结构体代码:
typedef struct node{
char name[20];
struct node *next;
}NODE;