Skip to content

Commit

Permalink
Esqueleto exteno del programa listo... falta chequear las condiciones…
Browse files Browse the repository at this point in the history
… de arbol de cada caso.
  • Loading branch information
throoze committed Jan 31, 2011
1 parent 151c23e commit c635a9c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
28 changes: 21 additions & 7 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#ifndef STD
#define STD
#include <stdio.h>
#include <string.h>
#define TRUE 1
#define FALSE 0
#define TAMAX 10
Expand All @@ -12,14 +13,27 @@
#endif

int main( int argc, char *argv[]) {

FILE *leer = fopen(argv[1], "r");
/* INICIALIZACIONES */
FILE *entrada = fopen(argv[1], "r");
HashLote cand_raiz = *(newHashLote());
HashLote hijos = *(newHashLote());
int fuente;
int destino;
while(fscanf(leer, "%d %d", &fuente, &destino) != EOF){
printf("%d %d\n", fuente, destino);
}

HashLote cand_raiz = *(newHashLote());
HashLote hijos = *(newHashLote());
/* LECTURA DEL ARCHIVO DE ENTRADA*/
while(fscanf(entrada, "%d %d", &fuente, &destino) != EOF){
if (fuente != -1 && destino != -1) {
if (fuente != 0 && destino != 0)
/* ALMACENAR LA ENTRADA Y DESCARTAR LAS DOS PRIMERAS CONDICIONES */
if (TRUE) {

}
} else {
/* PROBAR LA CONDICION QUE FALTA E IMPRIMIR LA SALIDA DE ESTE CASO */
}
printf("%d %d\n", fuente, destino);
} else {
break;
}
}
}
10 changes: 1 addition & 9 deletions main.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef STD
#define STD
#include <stdio.h>
#include <string.h>
#define TRUE 1
#define FALSE 0
#define TAMAX 10
Expand All @@ -10,12 +11,3 @@
#define ALM
#include "almacenamiento.h"
#endif


/**
* Se encarga de leer y almacenar un caso de prueba a la vez, para su posterior
* análisis.
*
* retorna: 0 en caso de que la lectura sea exitosa, 1 en caso contrario.
*/
int lectura();

0 comments on commit c635a9c

Please sign in to comment.