數據結構第四章 串 的基本操作集

1.順序串的基本定義 typedef struct{ char data[MaxSize]; int length; //存放串長 }SqString; 2.生成串 StrAssign(&s,cstr) 將一個 字符串常量cstr(以’\0’字符標識結尾)賦給順序串 s) void StrAssign(SqString &s, char cstr[]){ int i;
相關文章
相關標籤/搜索