C 2차원 배열 동적 해제 질문입니다

inel0910의 이미지

2차원 배열을 동적 할당한 후 해제를 하려 하는데요,
이경우 2차원 배열의 행과 열을 항상 같게 해야만
동적 해제가 가능한 건가요??

아무리 해도 안되네요;;
혹시라도 어디가 잘못된 것인지 알려주신다면 감사하겠습니다~

예제 소스는
파일로 부터 입력식을 파싱하여 받는 소스 중 일부입니다

3X4를 받고 해제 시키려고 하는데 잘 안되네요;;

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
 
void main()
{
	int i, j, k;
	int elementNumber;
	char line_buf[256];
	char char_buf[10];
	char temp[10];
	int sign;
	//int temp;
 
	//Gauss Elimination
	FILE *in1 = NULL;
	in1 = fopen("hw1_in1", "r");
	fscanf(in1, "%d", &elementNumber);
	//elementNumber++;
 
	//입력받은 수로 2차원 배열 동적할당
	int **matrix;
	matrix = (int **)malloc(sizeof(int)*(elementNumber));
	for(i = 0; i <= elementNumber; i++)
		matrix[i] = (int *)malloc(sizeof(int)*(elementNumber));
 
 
	//파일로부터 행렬 받아옴
	i = 0, j = 0;
	for(i; i < elementNumber; i++)	{
		for(j; j <= elementNumber; j++)	{
			fscanf(in1, "%s", &temp);
			if( (temp[0] == 45) || (temp[0] == 43) || (temp[0] == 61) )	{ //계수의 부호처리
				if( temp[0] == 43 ) //계수가 +일 경우
					sign = 1;
				else if( temp[0] == 45 ) //계수가 -일 경우
					sign = -1;
				*temp = NULL;
				fscanf(in1, "%s", &temp);
			}
 
			if( temp[0] == 48 )
				matrix[i][j] = 0;
			else if( (temp[0] != 48) && (sign == -1) )	{
				matrix[i][j] = -atoi(temp);
				if( matrix[i][j] == 0 )
					matrix[i][j] = -1;
			}
			else if( (temp[0] != 48) && (sign == 1) )	{
				matrix[i][j] = atoi(temp);
				if( matrix[i][j] == 0 )
					matrix[i][j] = 1;
			}
			else if( (temp[0] != 48) && (atoi(temp) == 0) )
				matrix[i][j] = 1;
			else
				matrix[i][j] = atoi(temp);
			sign = 0;
			*temp = NULL;
		}
		j = 0;
	}
 
 
	//for debug
	i = 0, j = 0;
	for(i; i < elementNumber; i++)	{
		for(j; j <= elementNumber; j++)	{
			printf("%d\t", matrix[i][j]);
		}
		printf("\n");
		j = 0;
	}
 
	///*
	//매트릭스 동적해제
	for(i = 0; i < elementNumber; i++)	{
		free(matrix[i]);
	}
	free(matrix);
	//*/
 
}

예제 입력 파일 입니다
3
x - y + 2z = 0
2x + y - z = 2
x + y + z = -1

승원의 이미지

matrix = (int **)malloc(sizeof(int)*(elementNumber));

이 부분에서 sizeof(int)가 아니라 sizeof(int *)가 되어야하는 거 아닌가요?

다른 부분은 잘 모르겠지만, 이 부분은 확실히 좀 이상한 것 같습니다.

댓글 달기

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