Advertisement
CarlosWGama

Estrutura Inicial - Fila

Mar 26th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. struct no {
  5.     int valor;
  6.     struct no *proximo;
  7. };
  8.  
  9. struct fila {
  10.     struct no *inicio;
  11.     struct no *fim;
  12. };
  13.  
  14. void enqueue(struct fila *f, int valor) {
  15.  
  16. }
  17.  
  18. int dequeue(struct fila *f) {
  19.  
  20. }
  21. int main() {
  22.  
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement