nguyentruong98

Untitled

Dec 7th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. Node *makeNode(int vertex)
  2. {
  3.       Node *p = (Node *)malloc(sizeof(Node));
  4.       p->vertex = vertex;
  5.       p->next = NULL;
  6.       return p;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment