数据结构-顺序串的基本操做

//顺序串的基本操做 #include<iostream> #include<string.h> using namespace std; #define max 50 typedef struct { char data[max]; int length; }sqstring; void display(sqstring s)//输出串 { int i; if(s.length>0)
相关文章
相关标签/搜索