Can you help me with the binary tree,,,,,,,,,, Please explain me in the technical terms, how does it searches.
Printable View
Can you help me with the binary tree,,,,,,,,,, Please explain me in the technical terms, how does it searches.
Found a very simple definition here:
http://searchdatabase.techtarget.com...509290,00.html
For others a google search for "Binary Trees" brought up a number of sites (hint hint).
Yes, you can get all you need for a definition by searching google. :-)
My definition (over-simplified) is that a binary (search) tree is a better data structure (non-linear) for searching really large amounts of information. It's much faster than, say, searching an array (linear data structure). In a binary tree, beginnning at the root node, each node has a pointer that can point to two other nodes - child nodes...ahhh it's a little involved to explain here, but not a difficult concept.
What is it that you are doing?? Do you have a book? Just curious.