대치암호 프로그램입니다. 에러가 나는데 포인터 에러인것 같습니다. 도와주세요

hello2345의 이미지

다음은 소스 전문입니다.(비주얼 스튜디오 2010을 쓰고 있습니다.)


#include <cstdio>
#include <cstdlib>
 
#define MAXLINE 50
#define MAX_COLS 100
 
//암호 텍스트 저장 배열
char arr[MAXLINE][MAXLINE];
char arr2[MAXLINE][MAXLINE];
 
// 해독 텍스트 저장 배열
char ans[MAXLINE][MAXLINE];
char ans2[MAXLINE][MAXLINE];
 
//대치암호 해독 구조체
struct sol{
 char alpha[26];
 int key[26];
};
 
void file_open();
 
void simple_check();
 
void main()
{
 
 file_open();
 simple_check();
}
 
void file_open()
{
 int i=0;
 //암호화 텍스트문 파일 로딩
 FILE *fp1 = fopen("pass.txt","rt");
 FILE *fp2 = fopen("pass2.txt","rt");
 printf("단순대치암호문\n");
 while(fgets(arr[i],MAX_COLS,fp1) != NULL){
  printf(arr[i]);
  i++;
 }
 i=0;
 printf("\n\nVigenere 암호문\n");
 while(fgets(arr2[i],MAX_COLS,fp2) != NULL){
  printf(arr2[i]);
  i++;
 }
 printf("\n"); 
}
// 첫번째 zvg 는 the 일 확률이 높음 t를 키로 정함 t는 19
void simple_check()
{
 int i,j,k=0,val=0;
 
 //구조체 초기화
 struct sol sol;
 for(i=0 ;i < 26 ; i++)
 {
  sol.alpha[i] = 97+i;
  sol.key[i] = i;
 }
 //매치 시작
 for(i = 0 ; arr[i] != NULL ; i++)
 {
  printf("arr[i] 시작\n");
  for(j = 0 ; arr[i][j] != NULL ; j++)
  {
   printf("arr[i][j] 시작\n");
   while(1)
   {
    printf("while 시작\n");
    if(arr[i][j] == sol.alpha[k] )
    {
     printf("if 시작\n");
 
     val = (sol.key[k] - 19) % 26;
     ans[i][j] = sol.alpha[val];
     k = 0;
     printf("if 끝\n");
     break;
    }
    else
    {
     printf("else 시작\n");
     k++;
     printf("else 끝\n");
    }
    printf("while 끝\n");
   }
   printf("arr[][]끝\n");
  }
  printf("arr[i] 끝\n");
 }
 i = 0;
 while(ans[i] != NULL){
  printf("%s",ans[i]);
  i++;
 }
}

프로그램은 대치암호까지만 코딩하였습니다.

그 다음 해석하는 while문을 들어가면서 에러가 생깁니다.ㅋ

일단 제 머리 안에서는 로직은 정확하게 돌아가는데 ^^;;;; 메모리 에러나는 이유를 모르겠네요.(for문 조건이 문제일까요?)
답변 부탁드립니다. 동봉된 텍스트 파일은 암호문 입니다.

File attachments: 
첨부파일 크기
Plain text icon pass.txt508바이트
Plain text icon pass2.txt1.37 KB
kalevala의 이미지

VC 2010에서 Mod 결과가 항상 양수인지 확인해봐야 할 것 같고,

매치 시작 바로 아래 for문 조건에서 arr[i] != NULL 때문에 잘못된 메모리를

참조하게 될 것 같군요.

swirlpotato의 이미지

vs 2010이시면 디버거를 이용하십시오.
배우기 쉬우니 5분이면 문제를 해결 할 수 있을겁니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.