How can I turn this tree structure
[1, [2, [3, 4]], [5, [6, [7], 8]]]
1
2
3
4
5
6
7
8
.... into this "reversed tree" structure, which basically contains the paths from all the leaf nodes to 1 (the root):
[8, [5, [1]], 7, [6, [5, [1]]], 4, [2, [1]], 3, [2, [1]]]
8
5
1
7
6
5
1
4
2
1
3
2
1
The result wouldn’t even have to be structured as a tree, four flat arrays in the correct order would also be fine.
It looks like Depth-first search might be a relevant algorithm, but I can’t understand the pseudocode (what does incidentEdges() return?), so I’m pretty stuck.
If someone could offer a Ruby method (or really easy to understand pseudocode) to convert the original nested array into the result array, I would be infinitely grateful.
And this is not a homework assignment, rather it is the result of it being too long since I’ve studied... I need this to print a dependency tree in the proper order for a given issue in an issue tracker.