Flash重生计划:用CefFlashBrowser唤醒被遗忘的数字记忆
2026/5/14 17:13:27
#define MAXSIZE 100 typedef struct { int data[MAXSIZE]; // 固定大小数组 int size; // 实际元素个数 } SeqList;typedef struct { int* data; // 动态数组(malloc/realloc) int size; // 有效元素个数 int capacity;// 总容量 } SeqList;