Posts by Mastero Brando • 23 points
1 post
-
0
votes1
answer656
viewsQ: What is the complexity of each of these functions?
Simple circular list implemented in C #include <stdio.h> #include <conio.h> #include <stdlib.h> typedef struct s_no{ float info; struct s_no* proximo; } no_t; no_t* cria (){ return…