- 博客(1)
- 收藏
- 关注
原创 循环单链表的创建
#include<stdio.h> typedef struct Node { int data; struct Node *next; }Node,*Linklist; void CreatL(Linklist &L) { Node *s,*r; int a; scanf("%d",&a); L = new Node; r = L; while(a!= 0){ s = new Node; s->data = a;
2023-01-18 15:17:21 127 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人