Having a bit of fun with Java and Binary Trees..
Node Class: Represents each node in the tree, containing a value and pointers to left and right children.
BinaryTree Class: Contains methods for inserting nodes, searching for a value, and performing in-order traversal.
Main Method: Demonstrates inserting values into the tree, printing the in-order traversal, and searching for a specific value.