동적할당된 이차원배열을 함수의 인수로 받아야 하는데

익명 사용자의 이미지

 1 #include <iostream>
  2 #include <algorithm>
  6
  8 using namespace std;
  9
  2
  3 void magic(int n, int** arr)
  4 {
  5 
  6     int num = 1;
  7     int i = 0;
  8     int j = (n / 2) + 1;
  9     arr[i][j] = num;
 10     num++;
 11     while (num <= n * n)
 12     {
 13         if ( (num - 1) % n == 0)
 14         {
 15             i++;
 16             arr[i][j] = num;
 17             num++;
 18         }
 19         else
 20         {
 21             if (i - 1 < 1)
 22             {
 23                 i = n;
 24                 j++;
 25                 arr[i][j] = num;
 26                 num++;
 27             }
 28             else if (j + 1 > n)
 29             {
 30                 i--;
 31                 j = 1;
 32                 arr[i][j] = num;
 33                 num++;
 34             }
 35             else
 36             {
 37                 i--;
 38                 j++;
 39                 arr[i][j] = num;
 40                 num++;
 41             }
 42         }
 43     }
 44 }
 
 10 int main(int argc, char *argv[])
 11 {
 12     int a = atoi(argv[1]);
 13     if( a % 2 != 1 && a < 3)
 14     {
 15         return 0;
 16     }
 17     int** arr = new int* [a];
 18     for(int i = 0; i < a; i++)
 19     {
 20         arr[i] = new int[a];
 21     }
 22     magic(a, arr);
 23     for(int i = 0; i < a; i++)
 24     {
 25         for(int j = 0; j < a; j++)
 26         {
 27             cout << arr[i][j];
 28         }
 29         cout << endl;
 30     }
 31 
 32     for(int i = 0; i < a; ++i) 
 33     { 
 34         delete[] arr[i];
 35     }
 36     delete[] arr; 
 37     return 0;
 38 }

홀수 마방진 인데요
실행은 되고 리눅스 터미널에선 세그멘테이션 폴트를 뱉네요
우선 이차원 배열을 이렇게 동적할당 해도 되나요...? 그리고 인수로 저렇게 받아도 되나요?
익명 사용자의 이미지

어떻게든 할 방법이 있기는 있는데 저라면 그냥 vector<vector<int>> 쓸 겁니다.

C-style 배열은 지역변수로 만들어서 지역 안에서만 갖고 놀 때나 편하지 이리저리 전달해 주기 번거로워요.
2차원 배열이면 세 배는 더 번거롭지요.

세벌의 이미지

소스 코드 올릴 때 행 번호는 넣지 마세요.
그래야 다른 분들이 그 소스로 컴파일 실행 테스트 하기 좋죠.

컴파일은 되는데 실행시 에러나면, 컴파일 할 때 아래와 같이 해서 Error 뿐 아니라 Warning도 잘 보세요.

gcc -Wall
raymundo의 이미지

인자 전달은 문제가 없는데, 예를 들어 명령행 인자가 3이라면 만들어진 이차원 배열(사실 이건 이차원 배열이 아니고 일차원 배열들 여러 개를 만들고 그것들의 첫 원소들을 가리키는 배열을 쓰는 거지만)의 행과 열의 인덱스는 0부터 2사이여야 하는데, 당장 num = 2에서 arr[3][3] 에 뭔가를 쓰려다 죽습니다.

좋은 하루 되세요!

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.