Searching for the minimum

Nasza ocena:

3
Wyświetleń: 469
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Searching for the minimum - strona 1

Fragment notatki:

Searching for the minimum struct bstel* min(struct bstel *node) { if (!node) return NULL; /* error */ while (node-left) node = node-left; return node; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz