typedef struct {char** seq;int* code int** site int* code }DICTION;改写成一个数组
时间: 2023-11-14 08:01:20 浏览: 95
typedef struct {
char** seq;
int* code;
int** site;
int* code;
} DICTION;
可以改写成一个数组,如下所示:
typedef struct {
char** seq;
int* code;
int** site;
int* code;
} DICTION;
DICTION dict;
阅读全文