數據結構-順序串的基本操做

//順序串的基本操做 #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)
相關文章
相關標籤/搜索