Advertisement
nguyentruong98

Untitled

Dec 8th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. void frontQueue(Queue *q, int vertex)
  2. {
  3.       if (q->head == NULL)
  4.             return NULL;
  5.       q->head = vertex;
  6.       return vertex;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement