Tagged Questions
The hierarchical-trees tag has no wiki summary.
6
votes
1answer
433 views
I Want to draw a hierarchial tree in a browser
I want to draw a hierarchial tree in a browser. I have used CSS and HTML and Javascript to play with some basic UI stuff in Browser. But I want to draw cool nodes and awesome connectors and come up ...
5
votes
2answers
279 views
Recommendations with hierarchical data on non-relational databases?
I'm developing an web application that uses a non-relational database as a backend (django-nonrel + AppEngine).
I need to store some hierarchical data (projects/subproject_1/subproject_N/tasks), and ...
4
votes
4answers
1k views
Converting tree list to hierarchy dict
I have a list of elements with attrs: parent, level, is_leaf_node, is_root_node, is_child_node.
I want to convert this list to hierarchy dict.
Example of output dict:
{
'Technology':
...
3
votes
1answer
731 views
JQuery, Hierarchical Table pagination
Hierarchical Table and table pagination is asked several times. But I am looking for both of them together. Am already using JQuery in my application so plugin using same will be useful, but I am open ...
3
votes
1answer
165 views
How to maintain several translations of a documentation set written with Sphinx?
I am starting a personal project and I'd like to provide documentation for my French speaking fellows as well as for the English speaking others.
So how should I organize my directories?
What to ...
3
votes
1answer
528 views
Reddit's commenting system (hierarchial)
For those of you who have looked at Reddit's source code, where exactly is the logic where it manages the comments hierarchial structure?
I downloaded the code, but couldn't even find the database ...
2
votes
2answers
595 views
Ruby on Rails: Routing for a tree hierarchy of places
So we've got a legacy system that tracks places with IDs like "Europe/France/Paris", and I'm building a Rails facade to turn this into URLs like http:// foobar/places/Europe/France/Paris. This ...
2
votes
2answers
511 views
How do you create a multi-dimensional array from hierachically stored SQL data using the adjacency list method?
Hierachical Data from SQL
Adjacency List Model
In my model I have a series of objects, each stored with their parent id. I am using the Adjacency list model as my hierachy method.
All examples of ...
2
votes
1answer
587 views
Best way to retrieve hierarchical data from database [closed]
I have to store blog style comments in a database. Each comment can have a parent one.
I am doing it with a column called "parentComment" that has a null value when it is a top level comment or have ...
1
vote
0answers
130 views
hierarchical tree models
I am looking for a hierarchical tree model in MySQL that performs best with the following requirements:
Multiple root nodes (and I mean a hell of a lot)
Limited depth (4 levels max)
Siblings sorted ...
1
vote
2answers
509 views
Creating a tree data structure (Has to be native) in Perl to represent a call tree that is located in a external file
Here is an example of the file.
powrup.asm POWER_UP
......EXTERNAL_RAM_ADDRESSING_CHECK powrup.asm:461
......EXRAM powrup.asm:490
...
1
vote
2answers
78 views
Whats an optimal data structure for a tree of maps
I'm looking for a data structure, that is basically a tree of maps, where the map at each node contains some new elements, as well as the elements in its parent node's map. By map here I mean a ...
1
vote
3answers
216 views
How do I query for all the nodes between two nodes in a tree?
I have a hierarchical database strucutre, e.g. columns ID and PARENT_ID defined for each row, with the top level rows having a NULL PARENT_ID.
I have all the relationships from this table flattened ...
1
vote
0answers
206 views
nHibernate: Query tree nodes where self or ancestor matches condition
I have see a lot of competing theories about hierarchical queries in fluent-nHibernate or even basic nHibernate and how they're a difficult beast.
Does anyone have any knowledge of good resources on ...
1
vote
2answers
1k views
How to get an hierarchical php structure from a db table, in php array, or JSON [closed]
Possible Duplicate:
Turn database result into array
Hi guys, can you please help me. How to get an hierarchical php structure from a db table, in php array, or JSON, but with the following ...
1
vote
1answer
600 views
Build and render infinite hierarchical category tree from self-referential category table
I have a Categories table in which each category has a ParentId that can refer to any other category's CategoryId that I want to display as multi-level HTML list, like so:
<ul class="tree">
...
1
vote
2answers
232 views
Structuring leafs in a hierarchical tree
This code fills a tree with values based on their depths. But when traversing the tree, I cannot manage to determine the actual number of children without iterating over the parent node. This is ...
1
vote
3answers
648 views
Doctrine nestedset delete
I have some models witch are using Doctrine nestedset feature.
I want to add delete functionaly of elements from tree since that is required in my application. I was trying with snippets from ...
1
vote
2answers
394 views
Tree structure category sum that cascades to root node
I'm going to come right out and say that I am not the worlds greatest Mathematician :D So this problem may well be simple to most of you. Unfortunately it's confusing me and have had several stabs at ...
1
vote
3answers
317 views
Creating hierarchy tree from dictionary of pages' contents
The following key:value pairs are 'page' and 'page contents'.
{
'section-a.html':{'contents':'section-b.html section-c.html section-d.html'},
'section-b.html':{'contents':'section-d.html ...
1
vote
0answers
636 views
Flex Advanceddatagrid tree drag and drop such that they should maimtain hierarchy
I have a situation where we have have to implement drag and drop in a AdvancedDataGrid to display the hierarchical data from a XML file. The trickiest part is that when I drag a leaf node (dragSource) ...
1
vote
2answers
983 views
Create Multi-Dimensional Array With Algorithm Using Data in Single-Dimensional Array
I have an single-dimensional array of PHP objects. Each object has two attributes, one attribute is the object's unique ID and the other is the unique ID of another object in the array that is its ...
1
vote
1answer
1k views
IHierarchicalDataSource, Hierarchy structure, ASP.NET
I am building a hierarchy structure from scratch and I am trying to determine the best route to take. I found the following link below from another StackOverflow question:
Nested Set Model
I like ...
0
votes
2answers
119 views
Need an Oracle hierarchical query that returns only full trees for records where children match a search string
Here's the full example data set for this query without any pruning of trees where no node matches the search string:
Level parent id text
---------------------------------------------
0 ...
0
votes
2answers
111 views
Lots of small tree structures in SQL or NoSQL Databases
I would like to store information on nodes in lots of different trees in a database.
To begin with there will be over 20000 nodes shared between 500 trees, each node will have 5 number attributes. ...
0
votes
1answer
255 views
Doctrine 1.2 NestedSet properties and relation inheritance from ancestors
I have a Doctrine 1.2 project that I'm refactoring in order to have a tree structure for a table using doctrine beahaviour NestedSet with multiple roots.
What I need is an inheritance (Not in the OO ...