摘要: 目录sqlist.hsqlist.ctest.c sqlist.h #include <stdio.h> #define N 128 typedef int data_type; typedef struct { data_type data[N]; int last; }sqlist; // 创建 阅读全文
posted @ 2023-09-21 20:40 扬帆去远航 阅读(112) 评论(0) 推荐(0)