6
2つの関数、1つは行列(2D配列)を読み込む関数、もう1つは関数を書き出す関数です。これまでのところ私が持っている:そしてポインタ/ mallocを使用して2D配列を作成し、それを印刷する
/* Read a matrix: allocate space, read elements, return pointer. The
number of rows and columns are given by the two arguments. */
double **read_matrix(int rows, int cols){
double **mat = (double **) malloc(sizeof(double *)*rows);
int i=0;
for(i=0; i<rows; i++){
/* Allocate array, store pointer */
mat[i] = (double *) malloc(sizeof(double)*cols);
//what to do after??
return mat;
}
プリントマトリックス機能ではなく、それが正しい
void print_matrix(int rows, int cols, double **mat){
for(i=0; i<rows; i++){ /* Iterate of each row */
for(j=0; j<cols; j++){ /* In each row, go over each col element */
printf("%f ",mat[i][j]); /* Print each row element */
}
}}
であり、ここで私は実行するために使用しています主な機能であるかどうかわから:
#include <stdio.h>
#include <stdlib.h>
double **read_matrix(int rows, int cols);
void print_matrix(int rows, int cols, double **mat);
void free_matrix(int rows, double **mat);
int main(){
double **matrix;
int rows, cols;
/* First matrix */
printf("Matrix 1\n");
printf("Enter # of rows and cols: ");
scanf("%d %d",&rows,&cols);
printf("Matrix, enter %d reals: ",rows*cols);
matrix = read_matrix(rows,cols);
printf("Your Matrix\n"); /* Print the entered data */
print_matrix(rows,cols,matrix);
free_matrix(rows, matrix); /* Free the matrix */
return 0;}
投票ではなくstackoverflowののコードレビューstackexchangeのための質問のように見えるので閉じます。しかし、コードは基本的にはうまく見えます。 –
あなたの正確な問題は何ですか?私はここに質問はありません... – Christoph
@BenJackson:それは[review.stackexchange(http://codereview.stackexchange.com/q/17833/6143)のofftopicとして閉じられています。良い経験ではありません。 – jfs