Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Help with Recursive Tree

Former Member
0 Likes
300

Hello,

I want to analyze table data using a recursive tree.

I have an internal table w/a single field containing, as an example, 4 entries: A, B, C, D. I want to create a binary search tree to analyze the following sets, in order:

1. [A] [ B ] [C] [D]

2. [A,B] [A,C] [A,D] [B,C] [B,D] [C,D]

3. [A,B,C] [A,B,D] [A,C,D] [B,C,D]

4. [A,B,C,D]

Any help is appreciated.

Cal

Message was edited by:

Cal

Message was edited by:

Cal

1 REPLY 1
Read only

Former Member
0 Likes
271

back to the top..