數據結構之順序隊列的操做(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
相關文章
相關標籤/搜索