May 9 2025 9:14:36.195 PM BINARY_TREE: FORTRAN90 version. Demonstrate how pointers can be used to define and manipulate a binary tree. TEST01 Create, one at a time, a sequence of integers. As each integer is created, insert it into a sorted binary tree. Print the binary tree at the end. Initial data generation: 1 28 2 146 3 192 4 102 5 549 6 230 7 796 8 554 9 273 10 34 Contents of sorted binary tree: 1 28 10 34 4 102 2 146 3 192 6 230 9 273 5 549 8 554 7 796 BINARY_TREE: Normal end of execution. May 9 2025 9:14:36.195 PM