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

第八週 專案4 字串加密

#include <stdio.h>
#include "sqString.h"

SqString A,B; //用於儲存字元對映表

void StrAssign(SqString &s,char cstr[]) //字串常量cstr賦給串s
{
    int i;
    for (i=0;cstr[i]!='\0';i++)         //字串常量cstr元素為空時終止
        s.data[i]=cstr[i];              //賦值
    s.length=i;                         //改變s的長度
}
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;
}
void DispStr(SqString s)//輸出串
{   int i;
    if (s.length>0)
    {
        for (i=0;i<s.length;i++)
            printf("%c",s.data[i]);
        printf("\n");
    }
}
int main()
{
    SqString p,q;
    StrAssign(A,"abcdefghijklmnopqrstuvwxyz");  //建立A串
    StrAssign(B,"ngzqtcobmuhelkpdawxfyivrsj");  //建立B串
    char str[MaxSize];
    printf("輸入原文串:");
    gets(str);                                  //輸入的原文串
    StrAssign(p,str);                           //建立p串
    printf("加密解密如下:\n");
    
    q=EnCrypt(p);                               //p串加密產生q串
    printf("加密後:");
    DispStr(q);
    
    p=UnEncrypt(q);                         //q串解密產生p串
    printf("解密後:");
    DispStr(p);
    printf("\n");
    return 0;
}

sqString.h:

#ifndef SqString_H_INCLUDED
#define SqString_H_INCLUDED

#define MaxSize 100             //最多的字元個數
typedef struct
{   char data[MaxSize];         //定義可容納MaxSize個字元的空間
    int length;                 //標記當前實際串長
} SqString;

void StrAssign(SqString &s,char cstr[]);    //字串常量cstr賦給串s
SqString DelStr(SqString s,int i,int j) ;   //串刪去
void DispStr(SqString s);   //輸出串
#endif // LISTRING_H_INCLUDED

執行結果: