Tutorial pour ML (SML)

Tutorial pour ML (SML) - Programmation

Marsh Posté le 06-11-2001 à 16:03:34    

Qqn connait un bon tutorial/aide pour ce language de prg?
D-avance merci


---------------

Reply

Marsh Posté le 06-11-2001 à 16:03:34   

Reply

Marsh Posté le 09-11-2001 à 13:11:01    

D'autres avis?

Reply

Marsh Posté le 12-02-2008 à 15:57:42    

Bonjour
 
Je suis un débutant en sml quelqu'un pourait il m'aider avec un code qui créé un arbre en sml? Je veux me baser sur cela. Merci d'avance

Reply

Marsh Posté le 12-02-2008 à 16:40:30    

Non, on ne fait pas le travail à ta place, pose plutôt des questions sur ce qui te pose problème.

Reply

Marsh Posté le 12-02-2008 à 17:07:02    

Excusez moi je ne demande pas de faire le travail à ma place! mais il se trouve que j'ai besoin d'un point de départ.
fun creerarbre str =

Reply

Marsh Posté le 12-02-2008 à 17:10:01    

Voici par exemple l'agorithme que je fais  
arbre tmp;
tmp = (Noeud*) malloc(sizeof(Noeud));
if (tmp != NULL)
{ tmp->info = info;
tmp->card = 1;
tmp->gauche = NULL;
tmp->droite = NULL;
}
return tmp;
}
j'ai besoin de le coder en ml Merci

Reply

Marsh Posté le 12-02-2008 à 17:27:08    

gokab a écrit :

Voici par exemple l'agorithme que je fais  
arbre tmp;
tmp = (Noeud*) malloc(sizeof(Noeud));
if (tmp != NULL)
{ tmp->info = info;
tmp->card = 1;
tmp->gauche = NULL;
tmp->droite = NULL;
}
return tmp;
}
j'ai besoin de le coder en ml Merci


 [:prozac]


---------------
I mean, true, a cancer will probably destroy its host organism. But what about the cells whose mutations allow them to think outside the box, and replicate and expand beyond their wildest dreams by throwing away the limits imposed by overbearing genetic r
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed