I have a dictionary with id and multiple values for each ID which are strings. For each value in that for each Id I make a database query and get set results:

{111: Run, Jump, swim}
{222: Eat, drink}

so for each value lets say run I execute a query and it returns another set of data then pick each value of that set and run query which will give another set and finally I come to a point where there is only one item get return. Once I finish get that final element of every single sub element of Run then I move to Jump and continue.

I asked this question before but didn't get any results so people told me to remove the code and just ask the question again. Here is the link for the same question which I ask few days ago. Do i need to implement something like disjoin set?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can look at the categories/subcategories as a tree with N branches at each node (depending how many categories you have). From what I can gather you basically want to generate an in-order list of tree leaves.

One simple way of doing it is through generators (using the terminology from your original question):

def lookup(elem):
    # do your SQL call here for a given category 'elem' and return
    # a list of it's subcategories
    return []

def leaves(lst):
    if lst:
        for elem in lst:                          # for every category
            for sublist in leaves(lookup(elem)):  # enumerate it's sub categories
                yield sublist                     # and return it
            yield elem                            # once lookup(elem) is [] return elem

d = { 111: [Run, Jump, swim] , 222: [Eat, drink] }

for key, lst in d.items():
    print key, [elem for elem in leaves(lst)]

If you are unfamiliar with generators, they are simply iterator constructs that "yield" values instead of returning them. The difference is that yielding only pauses the iterator at that location which will continue where it stopped when the next value is requested.

With some clever recursion inside the generator you can simply parse the whole tree.

The [elem for elem in leaves(lst)] is a list comprehension and it simply builds a list containing elem for every element iterated by leaves.

link|improve this answer
Thanks alot I was wondering if you had a chance to take a look at my attempts in my original question which I put a link here..? – Null-Hypothesis Nov 9 '11 at 5:12
1  
Sorry, in the last line it should be print key, [elem for elem in inorder(lst)] Edited the code above – digivampire Nov 9 '11 at 12:04
1  
Code above should be correct now. It basically creates a list of leaves for each key and initial list say key=111 and lst=[Run, Jump, swim] should output "111 [RunLeaf1, RunLeaf2, RunLeaf3, JumpLeaf1, JumpLeaf2, SwimLeaf1, SwimLeaf2...]" "222 ..." so on – digivampire Nov 18 '11 at 2:16
1  
For instance provided that Run -> [ RunChild1, RunChild2, ...] and RunChild1 -> [RunLeaf1] and RunChild2 -> [RunLeaf2, RunLeaf3] and so on... – digivampire Nov 18 '11 at 2:17
1  
If you are getting maximum recursion depth then it looks like your data structure is not actually a tree and it might have back edges (a leaf points to some of its parents for example) in which case you may get into infinite loops in which case obviously this approach will not work and you will have to adapt. – digivampire Nov 18 '11 at 13:05
show 5 more comments
feedback

This looks like plain tree traversal. You can use BFS or DFS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.