/*
  .__       .           .     
  [__) _  _.|_  _ ._. _.|_  _ 
  |  \(/,(_.[ )(/,[  (_.[ )(/,...
     _     _                                          
    | |__ (_) __ _ _ __ __ _ _ __ ___  _ __ ___   ___ 
    | '_ \| |/ _` | '__/ _` | '_ ` _ \| '_ ` _ \ / _ \
    | |_) | | (_| | | | (_| | | | | | | | | | | |  __/
    |_.__/|_|\__, |_|  \__,_|_| |_| |_|_| |_| |_|\___|
             |___/                                    
	   
AUTEURS	: Aymeric & Ramazan
GROUPE	: RT (5)
DATE	: 21/03/2003
FICHIER	: liste.h

*/

#ifndef LISTE_H
#define LISTE_H

#include <iostream.h>
#include <stdio.h>

struct Maillon {
	int m1,m2;
	float p;
	Maillon * suivant;
};

class Liste
{
	Maillon * debut;
	int nb_elt;
	public:
		Liste();
		~Liste();
		const int nb_element() { return (nb_elt); }
		void ajoute(int,int,float);
		float cherche_Bigramme(int,int);

};

#endif
