- 博客(1)
- 收藏
- 关注
原创 C语言链表尾插法,插入、删除等操作
#include<stdio.h> #include<malloc.h> struct node{ int data; struct node *next; }; int main(){ int i; struct node *head =(struct node *)malloc(sizeof(struct node)),*p,*q,*r,*k,*w; q = head; k = head; for(i = ...
2021-11-05 22:14:46
648
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人