PROGRAM FOR BINARY SEARCHING IN TREES using RECURSION.
#include <iostream>
#include <conio.h>
#include <stdlib.h>
using namespace std;
class B_Tree;
class Node
{
private:
int Info;
Node *Left, *Right;
friend class B_Tree;
};
class B_Tree
{
private:
Node *Root;
public:
B_Tree()
{
Root = NULL;
}
...