Guest User

Untitled

a guest
Jun 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. typedef struct ListNode {
  2. int data;
  3. struct ListNode *next;
  4. } ListNode;
  5.  
  6. typedef struct List {
  7. ListNode *head;
  8. ListNode *tail;
  9. } List;
  10.  
  11. typedef struct Queue {
  12. List queue;
  13. } Queue;
Add Comment
Please, Sign In to add comment