1. 程式人生 > >第八週--專案4-字串加密

第八週--專案4-字串加密

問題描述及程式碼:

/*            
檔名稱:第8周專案4-字串加密.cpp       
作    者:劉春彤    
完成日期:2016年10月20日       
版 本 號:v1.0       
       
問題描述:一個文字串可用事先編制好的字元對映表進行加密。例如,設字元對映表為: 
          abcdefghijklmnopqrstuvwxyz 
          ngzqtcobmuhelkpdawxfyivrsj 
輸入描述:串的輸入。 
程式輸出:加密後的輸出。 
*/  

函式的實現:

SqString EnCrypt(SqString p)  
{  
    int i=0,j;  
    SqString q;  
    while (i<p.length)  
    {  
        for (j=0; p.data[i]!=A.data[j]; j++);  
        if (j>=p.length)            //在A串中未找到p.data[i]字母  
            q.data[i]=p.data[i];  
        else                        //在A串中找到p.data[i]字母  
            q.data[i]=B.data[j];  
        i++;  
    }  
    q.length=p.length;  
    return q;  
}  
  
SqString UnEncrypt(SqString q)  
{  
    int i=0,j;  
    SqString p;  
    while (i<q.length)  
    {  
        for (j=0; q.data[i]!=B.data[j]; j++);  
        if (j>=q.length)            //在B串中未找到q.data[i]字母  
            p.data[i]=q.data[i];  
        else                    //在B串中找到q.data[i]字母  
            p.data[i]=A.data[j];  
        i++;  
    }  
    p.length=q.length;  
    return p;  
}  

main函式:
#include <stdio.h>  
#include "sqString.h"  
int main()  
{  
    SqString p,q;  
    StrAssign(A,"abcdefghijklmnopqrstuvwxyz");  //建立A串  
    StrAssign(B,"ngzqtcobmuhelkpdawxfyivrsj");  //建立B串  
    char str[MaxSize];  
    printf("\n");  
    printf("輸入原文串:");  
    gets(str);                                  //獲取使用者輸入的原文串  
    StrAssign(p,str);                           //建立p串  
    printf("加密解密如下:\n");  
    printf("  原文串:");  
    DispStr(p);  
    q=EnCrypt(p);                               //p串加密產生q串  
    printf("  加密串:");  
    DispStr(q);  
    p=UnEncrypt(q);                         //q串解密產生p串  
    printf("  解密串:");  
    DispStr(p);  
    printf("\n");  
    return 0;  
}  
執行結果:



知識點總結:

串的相關操作.


學習心得:
學會了串的操作是加密的基礎。