-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGauss_reduction.c
executable file
·109 lines (97 loc) · 1.77 KB
/
Gauss_reduction.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include <stdio.h>
#include <stdlib.h>
int rows= 0;
int cols= 0;
float* tab;
void intab();
void printab();
void gauss(int i, int j);
int notnull(int i, int j);
void rowswap(int i, int s);
void rowdux(int i, int j, int r);
int main(int argc, char* argv[])
{
if(argc!=3)
{ printf("Input errato:\n %s (int_righe) (int_colonne)\n", argv[0]); return -1; }
else
if((rows=atoi(argv[1]))<=0 || (cols=atoi(argv[2]))<=0)
{ printf("Valori non ammessi:\n %s (int_righe) (int_colonne)\n", argv[0]); return -1; }
float local[rows][cols];
tab= local[0];
intab();
gauss(0,0);
return 0;
}
void intab()
{
char input[20];
for(int r= 0; r< rows; r++)
for(int c= 0; c< cols; c++)
{
printf("a[%d][%d]: ",r+1 ,c+1 );
scanf("%s", input);
if(input[0]=='q')
exit(0);
tab[c+r*cols]= atoi(input);
}
}
void printab()
{
puts("");
for(int r= 0; r< rows; r++)
{
for(int c= 0; c< cols; c++)
printf("%.2g\t", tab[c+r*cols]);
puts("\n");
}
puts("");
}
void gauss(int i, int j)
{
printab();
if(i+1<rows && j+1<cols)
{
if(notnull(i,j)==rows)
gauss(i,j+1);
else
{
if(!tab[j+i*cols])
{
rowswap(i,notnull(i+1,j));
gauss(i,j);
}
else
if(notnull(i+1,j)!=rows)
{
rowdux(i,j,notnull(i+1,j));
gauss(i,j);
}
else
gauss(i+1,j+1);
}
}
}
int notnull(int i, int j)
{
int r;
for(r= i; r<rows; r++)
if(tab[j+r*cols])
break;
return r;
}
void rowswap(int i, int s)
{
float temp;
for(int x=0; x<cols; x++)
{
temp= tab[x+i*cols];
tab[x+i*cols]= tab[x+s*cols];
tab[x+s*cols]= temp;
}
}
void rowdux(int i, int j, int r)
{
float lambda= tab[j+r*cols]/tab[j+i*cols];
for(; j<cols; j++)
tab[j+r*cols]-= lambda*tab[j+i*cols];
}