第八周 專案3 4 公共字元

2021-07-06 02:36:41 字數 1018 閱讀 4503

/*

檔名稱:main.cpp

作者       :王超

完成日期:2023年10月23日

問題描述:公共字元

*/#include

#include "sqstring.h"

int main()

#include

#include

#include "sqstring.h"

sqstring commchar(sqstring s1,sqstring s2)

void strcopy(sqstring &s,sqstring t)    //s為引用型引數

sqstring;

sqstring commchar(sqstring s1,sqstring s2);

void strassign(sqstring &s,char cstr);    //字串常量cstr賦給串s

void strcopy(sqstring &s,sqstring t);   //串t複製給串s

bool strequal(sqstring s,sqstring t); //判串相等

int strlength(sqstring s);  //求串長

sqstring concat(sqstring s,sqstring t);  //串連線

sqstring substr(sqstring s,int i,int j); //求子串

sqstring insstr(sqstring s1,int i,sqstring s2); //串插入

sqstring delstr(sqstring s,int i,int j) ;   //串刪去

sqstring repstr(sqstring s,int i,int j,sqstring t);     //串替換

void dispstr(sqstring s);   //輸出串

第八周專案6 公共字串

問題及 檔名稱 公共字串.cpp 完成日期 2016年10月20日 版本號 v1.0 問題描述 有兩個串s1和s2,設計乙個演算法求乙個這樣的串,該串中的字元是s1和s2中公共字元。所謂公共子串,是由在s1中有,且在s2中也有的字元構成的字元。例s1為 message s2為 agent 得到的公共...

第八周 專案2

程式的版權和版本宣告部分 檔名稱 object.cpp 完成日期 2013年 4 月 23日 版本號 v1.0 輸入描述 無 問題描述 程式輸出 略。include using namespace std class ctime void settime int h,int m,int s void...

第八周 專案3 2

檔名稱 main.cpp 作者 孫彩虹 完成日期 2015年11月16日 問題描述 試編寫演算法,實現將已知字串所有字元倒過來重新排列。include ifndef sqstring h included define sqstring h included define maxsize 100 最...