摘要: #include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 struct queue{ int front; int rear; int *p; }; void init(struct queue* s ) { s->front=0; s-> 阅读全文
posted @ 2022-01-24 22:21 UNkey 阅读(45) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> struct students{ int age; int high; int *p; }; void init(struct students* s ) { s->age=10; s->high=188; s->p=(i 阅读全文
posted @ 2022-01-24 21:52 UNkey 阅读(100) 评论(0) 推荐(0)