/*
* cola-circular.h
*
* Implantacion de colas circulares en vectores.
*/
#ifndef __COLA_CIRCULAR_H
#define __COLA_CIRCULAR_H
typedef double Elem;
#define MAX_ELEMENTOS_EN_COLA 100
typedef struct st_cola {
Elem elementos[MAX_ELEMENTOS_EN_COLA];
int anterior;
int posterior;
} Cola;
#endif
/* EOF cola-circular.h */
Text file Source (historic): geocities.com/ar/uap_c2a/ejemplos/cola
geocities.com/ar/uap_c2a/ejemplosgeocities.com/ar/uap_c2a
geocities.com/ar
(to report bad content: archivehelp @ gmail)
|
|
|
|
|