開發一個程序是使用IPC機制執行以下問題之一:方式 - 「通道」。通過將其擴展到較低階的行列式來實現方陣行列式的計算。 「主」過程發送作業「驅動」過程,但後者執行決定因素的計算,然後計算主過程的結果。換句話說,需要使用管道功能。我有一個工作計劃,但沒有IPC機制。我不知道管道功能以及它是如何工作的。通過管道函數計算C中的行列式矩陣。修改代碼
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
int determinant(int n, double mat[n][n])
{
int i,j,i_count,j_count, count=0;
double array[n-1][n-1], det=0;
if(n==1) return mat[0][0];
if(n==2) return (mat[0][0]*mat[1][1] - mat[0][1]*mat[1][0]);
for(count=0; count<n; count++)
{
i_count=0;
for(i=1; i<n; i++)
{
j_count=0;
for(j=0; j<n; j++)
{
if(j == count) continue;
array[i_count][j_count] = mat[i][j];
j_count++;
}
i_count++;
}
det += pow(-1, count) * mat[0][count] * determinant(n-1,array);
}
return det;
}
int main()
{
int i, j, dim;
printf("Enter n\n");
scanf("%d", &dim);
double matrix[dim][dim];
printf("Enter matrix:\n");
for(i = 0; i < dim; i++)
{
for(j = 0; j < dim; j++)
{
scanf("%lf \n", &matrix[i][j]);
}
}
double x = determinant(dim, matrix);
printf("Determinant = %g\n", x);
return 0;
}
完美的解釋。謝謝你;) – rustock