Advertisement
Guest User

tree.c

a guest
Mar 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdbool.h>
  3.  
  4. #include "list.h"
  5. #include "tree.h"
  6.  
  7. #define MAXIMUM_NUMBER_OF_NODES 500100
  8.  
  9. struct Tree {
  10.     int nodesAmount;
  11.  
  12.     Node** nodesArray;
  13. };
  14.  
  15. // CiÄ…g dalszy...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement