Add matrice Premiers & Suivants

This commit is contained in:
2016-02-02 15:09:18 +01:00
parent c61c586c48
commit 3f15e27954
4 changed files with 505 additions and 0 deletions

11
header/suivants.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __SUIVANTS__
#define __SUIVANTS__
#include"symboles.h"
int suivants[NB_NON_TERMINAUX+1][NB_TERMINAUX+1];
void initialise_suivants(void);
int est_suivant(int non_terminal, int terminal);
#endif