Advertisement
Vanya_Shestakov

Untitled

Mar 4th, 2021 (edited)
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.19 KB | None | 0 0
  1. type
  2. ...
  3.     TValue = Integer;
  4.     TPNode = ^TNode;
  5.  
  6.     TNode = record
  7.         Value : TValue;
  8.         PLeft, PRight : TPNode;
  9.     end;
  10.  
  11.     BinaryTree = record
  12.         Root: TPNode;
  13.     end;
  14. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement