Tagged Questions
10
votes
3answers
1k views
Hitting Maximum Recursion Depth Using Python's Pickle / cPickle
The background: I'm building a trie to represent a dictionary, using a minimal construction algorithm. The input list is 4.3M utf-8 strings, sorted lexicographically. The resulting graph is acyclic ...
2
votes
2answers
744 views
How to use 2 different item renderers in mx:Tree
Question for Flex guys.
How can I use multiple item renderers in mx:Tree depending on item's depth/level in tree?
For example. For the first level items I want to use label with button and for second ...
1
vote
1answer
42 views
“Correct” XML Format / Tree Depth Performance
I am building an XML file to hold the schedule of a ferry to import into an Android application and have developed three XML tree structures, but looking for an opinion on which to use based on ...
1
vote
2answers
435 views
Calculating depth and descendants of tree
Can you guys help me with the algorithm to do these things? I have preorder, inorder, and postorder implemented, and I am given the hint to traverse the tree with one of these orders. I am using dotty ...
0
votes
0answers
373 views
Tree enumeration, n-depth and m-width
I am trying to develop a java algorithm for the enumeration of n-depth and m-width trees:
Each node can have at maximum 7 children. Nodes are of different type: a first kind of node can have children ...