/*
* lista-vec.h
*
* interfaz de una lista como TAD implantada sobre vectores
*/
#ifndef __LISTA_VEC_H
#define __LISTA_VEC_H
typedef double Elem;
typedef int Pos;
#define MAX_ELEM_EN_LISTA 100
struct st_lista {
Elem elem[MAX_ELEM_EN_LISTA];
Pos ultimo; /* posicin que sigue al ltimo elemento de la lista */
};
typedef struct st_lista Lista;
#endif
/* EOF lista-vec.h */
Text file Source (historic): geocities.com/ar/uap_c2a/ejemplos/lista
geocities.com/ar/uap_c2a/ejemplosgeocities.com/ar/uap_c2a
geocities.com/ar
(to report bad content: archivehelp @ gmail)
|
|
|
|
|