數據結構之順序串的基本操做——C語言

#include <stdio.h> #include <stdlib.h> #define MaxSize 100 typedef struct { char data[MaxSize]; int len; }SqString; void StrAssign(SqString &str,char cstr[]) { int i; for (i=0;cstr[i]!='
相關文章
相關標籤/搜索