I've been looking and looking, but all I can find are searches that are part of classes and I'd rather have something a lot simpler to learn this whole concept from. So, anyway, can someone show me a binary tree search function that searches a simple binary tree given the tree, and a number?
the tree:
struct btree
{
int data;
btree *left;
btree *right;
};
Thanks for all of your help. It will be much appreciated.



LinkBack URL
About LinkBacks



