第七周專案4 字串加密

2021-07-23 17:32:16 字數 657 閱讀 1961

/*     

*煙台大學計算機控制與工程學院      

*作    者:鄒曉琳    

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

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

abcdefghijklmnopqrstuvwxyz  

ngzqtcobmuhelkpdawxfyivrsj  

*輸入描述:串的輸入。  

*程式輸出:加密後的輸出。  

順序串演算法庫

函式實現:

sqstring encrypt(sqstring p)    

q.length=p.length;    

return q;    

}    

sqstring unencrypt(sqstring q)    

p.length=q.length;    

return p;    

}  main.cpp函式

#include

#include "sqstring.h"  

int main()  

執行結果:

第8周 專案4 字串加密

檔名稱 1.pp 完成日期 2015年10月23日 問題描述 字串加密 include include define sqstring h included define maxsize 100 最多的字元個數 typedef struct sqstring void strassign sqstr...

第8周 專案4 字串加密

問題及 檔名稱 main.cpp 作 者 徐群壯 完成日期 2015.10.26 版 本 號 v1.0 問題描述 乙個文字串可用事先編制好的字元對映表進行加密。例如,設字元對映表為 abcdefghijklmnopqrstuvwxyz ngzqtcobmuhelkpdawxfyivrsj 則字串 l...

第8周專案4 字串加密

檔名稱 字串加密.cpp 作 者 孫欽達 完成日期 2015年10月28日 版 本 號 v1.0 問題描述 乙個文字串可用事先編制好的字元對映表進行加密。例如,設字元對映表為 abcdefghijklmnopqrstuvwxyz ngzqtcobmuhelkpdawxfyivrsj 輸入描述 串的輸...