#include <iostream> #define MAXSIZE 10 typedef struct SequenceList { // 陣列的元素 char *element; // 陣列的長度 int length; }; ...
確定! 回上一頁