I am trying to code a Function that uses the Counting Sort algorithm, but when i try to compile it says that output_array and count_array are undeclared, even though I already declared them as int type arrays.
#include <stdio.h>
#include <stdlib.h>
#include "input_blatt01.h"
int MAX_LAENGE = 1000;
int MAX_VALUE = 100;
int i, k, j;
void count_sort_calculate_counts(int input_array[], int len, int count_array[])
{
for (i=0; i<=len;i++)
{
count_array[i] = 0;
}
for (j=1; j<=len;j++)
{
count_array[input_array[j]] = count_array[input_array[j]] + 1;
}
}
void count_sort_write_output_array(int output_array[], int len, int count_array[])
{
k=0;
for (j=1;j<=len;j++)
{
for (i=1; i<=count_array[j]; i++)
{
output_array[k] = j;
k = k + 1;
}
}
}
int main(int argc, char *argv[]) {
if (argc < 2){
printf("Aufruf: %s <Dateiname>\n", argv[0]);
printf("Beispiel: %s zahlen.txt\n", argv[0]);
exit(1);
}
char *filename = argv[1];
int input_array[MAX_LAENGE];
int len = read_array_from_file(input_array, MAX_LAENGE, filename);
printf("Unsortiertes Array:");
print_array(input_array, len);
int i, k, j;
count_sort_calculate_counts(input_array, len, count_array);
count_sort_write_output_array(output_array, len, count_array);
printf("Sortiertes Array:");
print_array(output_array, len);
return 0;
}
Compiler Output:
introprog_blatt01_aufgabe02_vorgabe.c:51:51: error: use of undeclared identifier 'count_array'; did you mean 'print_array'? count_sort_calculate_counts(input_array, len, count_array);
./input_blatt01.h:2:6: note: 'print_array' declared here void print_array(int array[], int len);
introprog_blatt01_aufgabe02_vorgabe.c:52:35: error: use of undeclared identifier 'output_array'; did you mean 'input_array'? count_sort_write_output_array(output_array, len, count_array); introprog_blatt01_aufgabe02_vorgabe.c:45:9: note: 'input_array' declared here int input_array[MAX_LAENGE];
introprog_blatt01_aufgabe02_vorgabe.c:52:54: error: use of undeclared identifier 'count_array'; did you mean 'print_array'? count_sort_write_output_array(output_array, len, count_array);
./input_blatt01.h:2:6: note: 'print_array' declared here void print_array(int array[], int len);
introprog_blatt01_aufgabe02_vorgabe.c:55:17: error: use of undeclared identifier 'output_array'; did you mean 'input_array'? print_array(output_array, len);
introprog_blatt01_aufgabe02_vorgabe.c:45:9: note: 'input_array' declared here int input_array[MAX_LAENGE];
答案 0 :(得分:2)
You declared output_array
and count_array
as parameters of the functions below:
void count_sort_calculate_counts(int input_array[], int len, int count_array[])
void count_sort_write_output_array(int output_array[], int len, int count_array[])
But you didn't declare output_array
and count_array
in the main
function.
You probbaly need this:
...
int input_array[MAX_LAENGE];
int output_array[MAX_LAENGE]; // <<< add this
int count_array[MAX_LAENGE]; // <<< add this
int len = read_array_from_file(input_array, MAX_LAENGE, filename);
...
答案 1 :(得分:0)
I see no declarations of output_array and count_array inside main
function so it does not "know" about them. Read up on variable scopes. EDIT: I guess it can be remade so you can pass pointers to the arrays.