串的數據結構表——順序串與鏈式串(C語言版)

#include<stdio.h> #include<stdlib.h> #define MAXSIZE 100 //串的順序存儲 typedef struct st { char *ch; //串存放的起始地址,串中第i個字符存儲在ch[i-1]中 int length; //串的長度 int strsize; //分配的存儲空間的大小,若是不足,在經過real
相關文章
相關標籤/搜索