Say I have a dataset like

(1, 2, (3, 4), (5, 6), (7, 8, (9, 0)))

I want to convert it to a (semi) flat representation like,

(
(1, 2),
(1, 2, 3, 4),
(1, 2, 5, 6),
(1, 2, 7, 8),
(1, 2, 7, 8, 9, 0),
)

If you use this, (taken from SO)

def flatten(iterable):
    for i, item in enumerate(iterable):
        if hasattr(item, '__iter__'):
            for nested in flatten(item):
                yield nested
        else:
            yield item

this will convert it to a list like(after iterating)

[1, 2, 3, 4, 5, 6, 7, 8, 9]

But I cant get the original from this reperenstation, while I can get the original back from the first. (If every tuple has 2 elements only)

link|improve this question

1  
How would you convert that semi-flat version back to the original? – Triptych Aug 19 '09 at 21:21
I would think it would make more sense to keep your hierarchical dataset and create an additional flattened one. It probably uses less memory than your semi-flattened approach, and definitely less calculation time. – txwikinger Aug 19 '09 at 21:26
1  
And what is the question? – drhirsch Aug 19 '09 at 21:28
Tritych: That would be my next question on SO. :). but it looks to me there is enogh info to do this. txwikinger: I also need to pass the data in first represntation to another library. – agiliq Aug 19 '09 at 21:30
drhirsch: A function which converts first representation to second. – agiliq Aug 19 '09 at 21:31
show 3 more comments
feedback

2 Answers

up vote 2 down vote accepted

This will give the example output. Don't know if that's really the best way of representing the model you want, though...

def combineflatten(seq):
    items= tuple(item for item in seq if not isinstance(item, tuple))
    yield items
    for item in seq:
        if isinstance(item, tuple):
            for yielded in combineflatten(item):
                yield items+yielded

>>> tuple(combineflatten((1, 2, (3, 4), (5, 6), (7, 8, (9, 0)))))
((1, 2), (1, 2, 3, 4), (1, 2, 5, 6), (1, 2, 7, 8), (1, 2, 7, 8, 9, 0))
link|improve this answer
feedback

How about a using a different "flat" representation, one which can be converted back:

[1, 2, '(', 3, 4, ')', '(', 5, 6, ')', '(', 7, 8, '(', 9, 0, ')', ')']
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.