/**************************************************************************** ** *A print_arrays.c ANUPQ source Eamonn O'Brien ** *Y Copyright 1995-2001, Lehrstuhl D fuer Mathematik, RWTH Aachen, Germany *Y Copyright 1995-2001, School of Mathematical Sciences, ANU, Australia **
*/
#include"pq_defs.h"
/* procedure to print out integer array */
void print_array(int *a, int first, int last)
{ registerint i; for (i = first; i < last; ++i) {
printf("%d ", a[i]); if (i > first && (i - first) % 20 == 0)
printf("\n");
}
printf("\n");
}
/* procedure to print out character array */
void print_chars(char *a, int first, int last)
{ registerint i; for (i = first; i < last; ++i)
printf("%d ", a[i]);
printf("\n");
}
Messung V0.5
¤ Dauer der Verarbeitung: 0.9 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.