0
votes
2answers
52 views
AVL Tree Code - I don’t understand
void insert( const Comparable & x, AvlNode * & t )
{
if( t == NULL )
t = new AvlNode( x, NULL, NULL );
else if( x < t->element )
{
…
1
vote
5answers
56 views
sql query tree like structure
I have a tree like structure of Categories, the leaf Nodes in the tree have Products and the products have Cods
I need to select all the top level Categories (parent=null) that hav …
0
votes
1answer
37 views
Token Suffix Tree Tutorial
Can someone please point to tutorials on - "Token Suffix Trees".
Google, gives only links to research papers that are already using them! :(
Thanks in advance.
0
votes
2answers
33 views
How to build an hierarchy?
I want to analyze a piece of document and build an ontology from it.
There could be many characteristics of this document, and it could be a hierarchy.
What is the best programmin …
0
votes
1answer
35 views
xsl loop to split a fragment tree every n times
This is a sample of my XML, it can possibly have thousands of rows of items in a range of categories.
<store>
<products type="computer">
<item desc="text" am …
0
votes
1answer
52 views
Generate pretty image of tree/graph
Hello,
I want to generate a pretty image of my tree/graph data. I had a look at Graphviz, but the renderings are not great. Do you know of a solution that will produce pretty imag …
0
votes
1answer
38 views
Data model for storing categories (multiple parent nodes)
I've the following category structure:
- Transport (10)
- Cars (5)
- Audi (2)
- BMW (3)
- ...
- Spare Parts (5)
- Audi (5)
- Audi g …
0
votes
1answer
22 views
Family Tree in Silverlight
Hello Currently I am working on a project in which I have to create family tree.
It will have almostn number of hierarchy. Whole tree should be displayed to user as well as zoom in …
0
votes
3answers
69 views
Starting with an empty tree, what is the complexity of inserting into Red Black Tree in big-O notation?
If I have 10 elements and starting with an empty tree, What is the complexity of inserting 10 elements into Red Black in big-O notation?
Is it going to be more than O(log 10) bec …
1
vote
1answer
86 views
Looking for an implemenentation of binomial tree in c++
If anyone can point me into direction where i can find an easy to understand impl. of binomial tree, that would be very helpful. thx
tree should look like in this article: http:// …
0
votes
2answers
96 views
F# Code Optimization for Left Leaning Red Black Tree
I've been working on porting a C# implementation of a LLRBT to F# and I now have it running correctly. My question is how would I go about optimizing this?
Some ideas I have
U …
0
votes
2answers
28 views
Java Tree Node Coloring
I want to color(and give an icon to) a particular node of a JTree as opposed to in groups like OpenNode, LeafNode etc. How do I go about doing this?
1
vote
3answers
106 views
Finding whether or not an item is contained within an k-ary tree
I have a data type
data KTree a = Empty | Leaf a | Node a [KTree a] deriving (Eq, Show)
I would like to write a function that returns either true or false as to whether an item …
0
votes
1answer
41 views
Any way to recursively update a tree in SQL?
I've got a database table that represents a bunch of trees. The first three columns are GUIDs that look like this:
NODE_ID (PK)
PARENT_NODE_ID (FK to same table, references NODE_ …
1
vote
0answers
23 views
Creating a navigable tag tree based on Stack Overflow [closed]
Just for fun, how could I go about creating a navigable tag tree based on Stack Overflow?
It would be interesting to see the following somehow:
Which technologies generate the mo …
