JIGYASA
Would you like to react to this message? Create an account in a few clicks or log in to continue.
JIGYASA

An online placement forum.


You are not connected. Please login or register

Binary Search Tree ...

Go down  Message [Page 1 of 1]

1Binary Search Tree ... Empty Binary Search Tree ... Tue Jun 22, 2010 3:48 am

Lucifer


Admin

Given a binary tree. Write a function which takes the root node and checks if the given tree is a BST or not.

struct node
{
int data;
struct node *lChild;
struct node *rChild;
};

https://jigyasa.forumotion.com

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum