Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #define nmax 100
  2. using namespace std;
  3.  
  4. typedef int t1[nmax];
  5. struct ref
  6. {
  7.     int b;
  8.     int c;
  9.     ref*next;
  10. };
  11.  
  12. struct ref2
  13. {
  14.     int val;
  15.     ref2* left;
  16.     ref2* right;
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement