Tagged Questions

8
votes
7answers
660 views

Confusing […] List in Python: What is it?

So I was writing up a simple binary tree in Python and came across [...] I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an infinity loop (due to ...
3
votes
2answers
65 views

Recursion versus manual stacks - Which is preferred in which case?

A recursive program creates a stack internally, and causes the users to write less code. Are there any cases where recursion is actually preferred over manual stacks for the reason other than ...
1
vote
4answers
422 views

Get path from every leaf node to root in a tree structure

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 ...
1
vote
2answers
183 views

Efficient persistable recursive data structure

The usual approach with recursive data structures is to have a parent pointer in each object. My problem is that the usual implementation can't answer the questions below in a single operation; ...
0
votes
2answers
145 views

Why doesn't this work recursively?

Below is a program in Scala. def range(low : Int, high : Int) : List[Int] = { var result : List[Int] = Nil result = rangerec(root, result, low, high) result } private def rangerec(r : ...
0
votes
1answer
72 views

How do I list only selected level in directory recursive list?

I use this code: PHP Sort Files In Directory by Type But it opens up all directories. I just want directories that leads to the selected item to be open.