数据结构之顺序队列的操做(C语言)

#include <stdio.h> #include <stdlib.h> #include <string.h> #define QUEUELEN 15 //数据结构的定义 typedef struct { char name[10]; int age; }DATA; typedef struct { DATA data[QUEUELEN]; int head; int ta
相关文章
相关标签/搜索