第八周專案4 字串加密

2021-07-25 09:36:06 字數 3189 閱讀 1485

/*

*檔名稱:1.cpp

*完成日期:2023年12月15日

*版本號:v1.0

*問題描述:乙個文字串可用事先編制好的字元對映表進行加密。例如,設字元對映表為:

abcdefghijklmnopqrstuvwxyz

ngzqtcobmuhelkpdawxfyivrsj

則字串「lao he jiao shu ju jie gou」被加密為「enp bt umnp xby uy umt opy」。 

設計乙個程式,實現加密、解密演算法,將輸入的文字進行加密後輸出,然後進行解密並輸出。

*輸入描述:字串(設為多組輸入)

*程式輸出:加密、解密後的字串*/

sqstring.h:

[cpp]view plain

copy

#include 

#define maxsize 100

typedef

struct

//定義順序串型別

sqstring;  

void

strassign(sqstring &s,

char

cstr);                

//字串常量cstr賦給串s

void

strcopy(sqstring &s,sqstring t);                   

//串t複製給串s

bool

strequal(sqstring s,sqstring t);                   

//判串相等

intstrlength(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);                               

//輸出串

sqstring.cpp:

[cpp]view plain

copy

#include "sqstring.h"

void

strassign(sqstring &s,

char

cstr)                

//字串常量cstr賦給串s

void

strcopy(sqstring &s,sqstring t)                   

//串t複製給串s

bool

strequal(sqstring s,sqstring t)                   

//判串相等

}  return

flag;                                       

//其他情況表示兩串相等,返回真

}  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)                               

//輸出串

}  main.cpp:

[cpp]view plain

copy

#include 

#include "sqstring.h"

sqstring s,s1,s2;                         //宣告順序串型別,存字元對映表

sqstring jiami(sqstring s)  

}  if(flag==1)  

t.data[i]=s2.data[j];  

else

t.data[i]=s.data[i];  

}  t.length=s.length;  

return

t;  

}  sqstring jiemi(sqstring s)  

}  if(flag==1)  

t.data[i]=s1.data[j];  

else

t.data[i]=s.data[i];  

}  t.length=s.length;  

return

t;  

}  int

main()  

return

0;  

}  

執行結果:

第八周 專案4 字串加密

檔名稱 main.cpp 作者 王超 完成日期 2015年10月23日 問題描述 字串加密 include include sqstring.h sqstring a,b 用於儲存字元對映表 sqstring encrypt sqstring p q.length p.length return q...

第八周專案4 字串加密

檔名稱 h1.cpp 完成日期 2015年10月26日 版本號 vc6.0 問題描述 設計乙個程式,實現加密 解密演算法,將輸入的文字進行加密後輸出,然後進行解密並輸出。輸入描述 加密檔案 程式輸出 加密 解密的結果 include include define maxsize 100 最多的字元個...

第八周 專案4 字串加密

問題描述 乙個文字串可用事先編制好的字元對映表進行加密。例如,設字元對映表為 abcdefghijklmnopqrstuvwxyz ngzqtcobmuhelkpdawxfyivrsj 則字串 lao he jiao shu ju jie gou 被加密為 enp bt umnp xby uy um...