Skip to content

Instantly share code, notes, and snippets.

@captainsafia
Created August 17, 2012 20:59
Show Gist options
  • Save captainsafia/3382605 to your computer and use it in GitHub Desktop.
Save captainsafia/3382605 to your computer and use it in GitHub Desktop.
Queue Data Structure in C
void push(int *q, int *tail, int element);
int pop(int *q, int *head);
int empty(int head, int tail);
void init(int *head, int *tail);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment