1. 程式人生 > >4.2.2 堆分配儲存結構

4.2.2 堆分配儲存結構

 /* c4-2.h 串的堆分配儲存 */
 typedef struct
 {
   char *ch; /* 若是非空串,則按串長分配儲存區,否則ch為NULL */
   int length; /* 串長度 */
 }HString;

                                                                      

 /* bo4-2.c 串採用堆分配儲存結構(由c4-2.h定義)的基本操作(14個)。包括演算法4.1、4.4 */

 #define DestroyString ClearString /* DestroyString()與ClearString()作用相同 */

 void StrAssign(HString *T,char *chars)
 { /* 生成一個其值等於串常量chars的串T */
   int i,j;
   if((*T).ch)
     free((*T).ch); /* 釋放T原有空間 */
   i=strlen(chars); /* 求chars的長度i */
   if(!i)
   { /* chars的長度為0 */
     (*T).ch=NULL;
     (*T).length=0;
   }
   else
   { /* chars的長度不為0 */
     (*T).ch=(char*)malloc(i*sizeof(char)); /* 分配串空間 */
     if(!(*T).ch) /* 分配串空間失敗 */
       exit(OVERFLOW);
     for(j=0;j<i;j++) /* 拷貝串 */
       (*T).ch[j]=chars[j];
     (*T).length=i;
   }
 }

                                                                          

 void StrCopy(HString *T,HString S)
 { /* 初始條件:串S存在。操作結果:由串S複製得串T */
   int i;
   if((*T).ch)
     free((*T).ch); /* 釋放T原有空間 */
   (*T).ch=(char*)malloc(S.length*sizeof(char)); /* 分配串空間 */
   if(!(*T).ch) /* 分配串空間失敗 */
     exit(OVERFLOW);
   for(i=0;i<S.length;i++) /* 拷貝串 */
     (*T).ch[i]=S.ch[i];
   (*T).length=S.length;
 }

 Status StrEmpty(HString S)
 { /* 初始條件:串S存在。操作結果:若S為空串,則返回TRUE,否則返回FALSE */
   if(S.length==0&&S.ch==NULL)
     return TRUE;
   else
     return FALSE;
 }

 int StrCompare(HString S,HString T)
 { /* 若S>T,則返回值>0;若S=T,則返回值=0;若S<T,則返回值<0 */
   int i;
   for(i=0;i<S.length&&i<T.length;++i)
     if(S.ch[i]!=T.ch[i])
       return S.ch[i]-T.ch[i];
   return S.length-T.length;
 }

 int StrLength(HString S)
 { /* 返回S的元素個數,稱為串的長度 */
   return S.length;
 }

 void ClearString(HString *S)
 { /* 將S清為空串 */
   free((*S).ch);
   (*S).ch=NULL;
   (*S).length=0;
 }

                                                                  

 void Concat(HString *T,HString S1,HString S2)
 { /* 用T返回由S1和S2聯接而成的新串 */
   int i;
   if((*T).ch)
     free((*T).ch); /* 釋放舊空間 */
   (*T).length=S1.length+S2.length;
   (*T).ch=(char *)malloc((*T).length*sizeof(char));
   if(!(*T).ch)
     exit(OVERFLOW);
   for(i=0;i<S1.length;i++)
     (*T).ch[i]=S1.ch[i];
   for(i=0;i<S2.length;i++)
     (*T).ch[S1.length+i]=S2.ch[i];
 }

 Status SubString(HString *Sub, HString S,int pos,int len)
 { /* 用Sub返回串S的第pos個字元起長度為len的子串。 */
   /* 其中,1≤pos≤StrLength(S)且0≤len≤StrLength(S)-pos+1 */
   int i;
   if(pos<1||pos>S.length||len<0||len>S.length-pos+1)
     return ERROR;
   if((*Sub).ch)
     free((*Sub).ch); /* 釋放舊空間 */
   if(!len) /* 空子串 */
   {
     (*Sub).ch=NULL;
     (*Sub).length=0;
   }
   else
   { /* 完整子串 */
     (*Sub).ch=(char*)malloc(len*sizeof(char));
     if(!(*Sub).ch)
       exit(OVERFLOW);
     for(i=0;i<=len-1;i++)
       (*Sub).ch[i]=S.ch[pos-1+i];
     (*Sub).length=len;
   }
   return OK;
 }

 void InitString(HString *T)
 { /* 初始化(產生空串)字串T。另加 */
   (*T).length=0;
   (*T).ch=NULL;
 }

 int Index(HString S,HString T,int pos) /* 演算法4.1 */
 { /* T為非空串。若主串S中第pos個字元之後存在與T相等的子串,*/
   /* 則返回第一個這樣的子串在S中的位置,否則返回0 */
   int n,m,i;
   HString sub;
   InitString(&sub);
   if(pos>0)
   {
     n=StrLength(S);
     m=StrLength(T);
     i=pos;
     while(i<=n-m+1)
     {
       SubString(&sub,S,i,m);
       if(StrCompare(sub,T)!=0)
         ++i;
       else
  return i;
     }
   }
   return 0;
  }

 Status StrInsert(HString *S,int pos,HString T) /* 演算法4.4 */
 { /* 1≤pos≤StrLength(S)+1。在串S的第pos個字元之前插入串T */
   int i;
   if(pos<1||pos>(*S).length+1) /* pos不合法 */
     return ERROR;
   if(T.length) /* T非空,則重新分配空間,插入T */
   {
     (*S).ch=(char*)realloc((*S).ch,((*S).length+T.length)*sizeof(char));
     if(!(*S).ch)
       exit(OVERFLOW);
     for(i=(*S).length-1;i>=pos-1;--i) /* 為插入T而騰出位置 */
       (*S).ch[i+T.length]=(*S).ch[i];
     for(i=0;i<T.length;i++)
       (*S).ch[pos-1+i]=T.ch[i]; /* 插入T */
     (*S).length+=T.length;
   }
   return OK;
 }

 Status StrDelete(HString *S,int pos,int len)
 { /* 從串S中刪除第pos個字元起長度為len的子串 */
   int i;
   if((*S).length<pos+len-1)
     return ERROR;
   for(i=pos-1;i<=(*S).length-len;i++)
     (*S).ch[i]=(*S).ch[i+len];
   (*S).length-=len;
   (*S).ch=(char*)realloc((*S).ch,(*S).length*sizeof(char));
   return OK;
 }

 Status Replace(HString *S,HString T,HString V) /* 此函式與串的儲存結構無關 */
 { /* 初始條件:串S,T和V存在,T是非空串 */
   /* 操作結果:用V替換主串S中出現的所有與T相等的不重疊的子串 */
   int i=1; /* 從串S的第一個字元起查詢串T */
   if(StrEmpty(T)) /* T是空串 */
     return ERROR;
   do
   {
     i=Index(*S,T,i); /* 結果i為從上一個i之後找到的子串T的位置 */
     if(i) /* 串S中存在串T */
     {
       StrDelete(S,i,StrLength(T)); /* 刪除該串T */
       StrInsert(S,i,V); /* 在原串T的位置插入串V */
       i+=StrLength(V); /* 在插入的串V後面繼續查詢串T */
     }
   }while(i);
   return OK;
 }

 void StrPrint(HString T)
 { /* 輸出T字串。另加 */
   int i;
   for(i=0;i<T.length;i++)
     printf("%c",T.ch[i]);
   printf("\n");
 }