[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: saving binary tree to file



On Fri, Dec 01, 2000 at 04:18:55PM +0530, sreangsu acharyya wrote:
> On Fri, 1 Dec 2000, Ketan Mehta wrote:
> 
> > 	In-order traversal is root , left , right.
> > 	BFS - has to be implemented by queue 
> 
> yeah thats what i tried to explain in the mail with the tree ABCDE. But
> back to the actual intent, can one use btree( ) of the db package for
> this , or has anyone used it.

B-tree stands for balanced tree and not binary tree. Most databases
which store data in an easy to search form, use b-trees.

	-Arun