L
Lara
Hi,
I am very new to C#.net. Right now i want to develope a binary tree for my
current project, The sp returns ParentID, SiblingID, Position(1/0 : 1-left,
0-right) and level (0 for root). From these i need to create a binary tree.
for eg :
1
2 3
4 5 6
The sp returns
1 2 1 0
1 3 0 0
2 4 1 1
2 5 0 1
3 6 1 0
Thanking in advance
Lara
I am very new to C#.net. Right now i want to develope a binary tree for my
current project, The sp returns ParentID, SiblingID, Position(1/0 : 1-left,
0-right) and level (0 for root). From these i need to create a binary tree.
for eg :
1
2 3
4 5 6
The sp returns
1 2 1 0
1 3 0 0
2 4 1 1
2 5 0 1
3 6 1 0
Thanking in advance
Lara