第8周實踐專案4 字串加密

2021-07-06 03:28:20 字數 729 閱讀 3870

問題及**:

/*      

檔名稱:第8周專案4-字串加密.cpp

作 者:劉強

完成日期:2023年10月24日

版 本 號:v1.0

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

abcdefghijklmnopqrstuvwxyz

ngzqtcobmuhelkpdawxfyivrsj

輸入描述:串的輸入。

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

*/

順序串演算法庫

函式的實現:

sqstring encrypt(sqstring p)

q.length=p.length;

return q;

}sqstring unencrypt(sqstring q)

p.length=q.length;

return p;

}

main函式:

#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 輸入描述 串的輸...