41 lines
731 B
C
41 lines
731 B
C
|
|
/* Driver for routine shell */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#define NRANSI
|
|
#include "nr.h"
|
|
#include "nrutil.h"
|
|
|
|
#define MAXSTR 80
|
|
#define NP 100
|
|
|
|
int main(void)
|
|
{
|
|
char txt[MAXSTR];
|
|
unsigned long i,j;
|
|
float *a;
|
|
FILE *fp;
|
|
|
|
a=vector(1,NP);
|
|
if ((fp = fopen("tarray.dat","r")) == NULL)
|
|
nrerror("Data file tarray.dat not found\n");
|
|
fgets(txt,MAXSTR,fp);
|
|
for (i=1;i<=NP;i++) fscanf(fp,"%f",&a[i]);
|
|
fclose(fp);
|
|
printf("\nOriginal array:\n");
|
|
for (i=0;i<=9;i++) {
|
|
for (j=1;j<=10;j++) printf("%7.2f",a[10*i+j]);
|
|
printf("\n");
|
|
}
|
|
shell(NP,a);
|
|
printf("\nSorted array:\n");
|
|
for (i=0;i<=9;i++) {
|
|
for (j=1;j<=10;j++) printf("%7.2f",a[10*i+j]);
|
|
printf("\n");
|
|
}
|
|
free_vector(a,1,NP);
|
|
return 0;
|
|
}
|
|
#undef NRANSI
|