A tree is a widely-used data structure that emulates a hierarchical tree-like structure with a set of linked nodes.
0
votes
0answers
6 views
Actionscript 3 Where do Events pass through and how is target obtained?
I am currently trying to understand the Event Flow of Actionscript 3, for that I am trying to implement the AS3 Event Flow in Java.
I already read ...
0
votes
1answer
21 views
Check if an undirected graph is a tree in networkx
I would like to know if there is a simple way to check whether a certain undirected graph in networkx is a tree or not
0
votes
0answers
11 views
Xul tree is disabled, but looks editable
I am using the xul tree for handling some prefs in Firefox.
<tree flex="1" id="treeCollection" hidecolumnpicker="true" height="200" editable="true">
<treecols>
<treecol ...
0
votes
0answers
11 views
how we can add element at the starting of array in every operation and compute sum of any given range.?
You are initially given an array of N integers ( 1<=N<=105 ). Given this array, you have to perform 2 kinds of operations :
(i) Operation 1 : Op1( l, r )
You are given 2 integers l and r. ( 1 ...
0
votes
1answer
22 views
How to loop over a Tree widget when the depth of the node is unknown (GWT)?
I searched over the internet but didn't see any single post discussing about this very useful topic. Here is my problem.
I got a Tree that has CheckBoxes on the root & on the child of the ...
0
votes
1answer
35 views
c++ trying to find the distance between 2 nodes
I am currently working on a function that has 1 helper function, the main function takes in 2 strings and searches for the first one (which becomes a reference as if it was m_root) and a second one to ...
0
votes
1answer
40 views
Searching through a tree and adding up the distances of towns you pass by
these 2 fucntions together should return the total distance you must travel to go directly to a node. at the moment, it doesnt work with more long and complex things. simple things however work just ...
-3
votes
1answer
28 views
c++ searching for a node in a tree
In my program I am recursively trying to find a node in a tree while given a target, but i cant get it to work!
Stree::Node * Stree::find_node(Node* cur, string target)
{
Node *tmp = cur;;
...
-1
votes
0answers
23 views
Django navigation tree
Please, help me with my problem!
I need an example of tree navigation in Django, like here. I know about django-mptt, and others, but I need example WITHOUT these libraries.
I have a model:
class ...
0
votes
2answers
22 views
Python: ambiguities when (un-)pickling a dict-based tree
I have a simple tree structure where each node can have several children which are accessed through keys (+ some payload stored in value):
class NodeDict(dict):
def __init__(self, parent):
...
0
votes
0answers
20 views
ExtJS 4 TreeStore get element having record internal id
I've a treestore (Ext.data.TreeStore) already populated with some record.
I know the internal id of a record of this store (for example the record id is: "ext-record-144") and I want to get this ...
0
votes
0answers
9 views
GWT Tree with Anchor does not allow me to select child nodes
i used Tree with TreeItem and textitem and it allows selection of child elements.
item = dynamicTree.addTextItem("Menu");
But when i try using it with Anchor, child tree items selection + sign is ...
0
votes
3answers
22 views
c++ how to assign a pointer to a parent in a binary tree
i'm confused on how you initialize the m_parent to point to the node above the child.
class Node
{
public:
Node(string city);
~Node();
string m_city;
int m_parent_distance;
...
2
votes
2answers
50 views
How do I fix my STL style container to hold incomplete or abstract types?
A few days ago, I took it upon myself to try and write a basic tree implementation in the same style as the STL containers. Now I am trying to use it in my code, but two things don't seem to work that ...
0
votes
1answer
21 views
php tree recursion using mySQL
I have the following code, and a huge ERROR : Maximum function nesting level of '100' reached, aborting!:
function getTree($id)
{
$arr = array();
$sql ='select * from arboree where ...
0
votes
1answer
30 views
TreeNode Remove() not working
Long story short:
I traverse a generic tree and collect some nodes to a list according to a filter
after a complete traversal I start removing each node one by one
remove collected nodes
foreach ...
0
votes
2answers
13 views
KMLTree for Using with the Google Earth Plugin
I need a solution for loading all the layers and elements of a KML file into a webpage tree element for use with the Google Earth Plugin.
Is the jquery KMLTree the only option for a tree to view KML ...
0
votes
0answers
18 views
Filtering the tree structure of Stanford tagged sentences to get first noun from sibling of verb phrase
New to StackOverflow. I am trying to extract subject-verb-object from a sentence and many people has recommended Python with NLTK ..still a newbie with Python but loving it so far! I'm trying my hands ...
1
vote
2answers
24 views
How to convert HashMap<String, List<String[]>> into a Tree in GWT?
I got this data which was pulled from Database & I want to convert it into a Tree.
DATA:
mom son momText sonText
1 2 Main Level1
2 4 Level1 Level2
4 5 Level2 Level3
4 7 ...
-1
votes
1answer
36 views
When does a heap become a full binary tree?
I know that heaps are always complete binary trees. But I was wondering when is a heap a full binary tree? Such as what conditions must the heap be in to always be a full binary tree?
0
votes
1answer
19 views
How to connect svn server and clone repo from within mac os x using souretree
I'm using mac and wanna get a repo in svn using souretree, when add bookmark using sourcetree using SVN URL, and source tree can know it's a SVN url, but when click the clone button , it reports error ...
2
votes
0answers
43 views
How do I create a dynamic tree in c# that adds up parents to respective children then recusively goes back through?
I want to be able to go through a loop with if statements that will store a set of data. After the first loop gets its values I want to make a loop that goes through the list of values just created. ...
3
votes
1answer
121 views
What does Tree(Int,Int) mean in haskell?
I m novice and i am learning data structures in haskell right now.I saw something like
Tree(Int,Int)
Does that mean tuple of trees? i m trying to write something like
data Tree a = Leaf a | ...
0
votes
0answers
64 views
Java search tree algorithm
We are making a slidepuzzle for a project for school. We succeeded in making the puzzle but now we want to make an ' ARTIFICIAL INTELLEGINCE'. THis means the computer can calculate the shortest ...
2
votes
0answers
29 views
How to re-render a specific node in gwt cell tree
I am implementing a directory structure like Windows Explorer. I want to re-render a specific node of tree after any folder operations is done such as add folder, remove folder... etc
private ...
0
votes
0answers
14 views
How to save R C50 tree without traindata?
When I use C50 in R:
data(churn)
treeModel <- C5.0(x = churnTrain[, -20], y = churnTrain$churn)
dput(treeModel, "E:/treeModel")
I closed R and started New one, want to do some predict:
...
0
votes
0answers
10 views
Android - shared data tree and many adapters for each level
What I have is a structure like that:
Main
item 1
child 1
...
child 2
...
child 3
item 2
child 4
...
item 3
child 5
I now have a view pager with the main items and clicking on an ...
0
votes
0answers
46 views
Comparing huge trees over slow network
I have a tree like data structure:
I have a list of work orders
each work orders has several operations
each operation has several roles
each role has several resources nodes
Each work order, ...
0
votes
3answers
32 views
Build a Tree Out of File Path, Is My Logic Correct?
I am trying to build a tree and I would like to link parent nodes to children based on a filepath like structure such as the one below, where The World is the root:
The World
The World/Asia
...
1
vote
2answers
63 views
C and string handling
FULL CODE http://pastebin.com/6bdVTyPt
My tree code was perfectly working until i found out i needed to validate the id that its not text so it had to be string
insertion function
string compare of ...
0
votes
1answer
34 views
make a tree of items in selectbox in php
I have a code to make a tree in my html select box
I've filled the array and generate tree in select box
like this :
$vertices = array(
array(
'id' => 5,
'name' => ...
0
votes
0answers
11 views
size of the tree, Not in scope
Here is my code:
data Binary_Tree a = Null
|Node {element :: a, left_tree, right_tree :: Binary_Tree a}
deriving (Show, Eq)
--depth_of_tree
dot :: Integral b => ...
-2
votes
1answer
38 views
How to convert this 2 columns data into a Tree in Java? [closed]
Say, I got a 2 column table
Parent - Child
135 - 140
140 - 141
141 - 142
141 - 145
135 - 149
149 - 150
The top father ("135") is the first value in Parent column.
The data can be put into a List.
...
0
votes
2answers
27 views
Finding the closest intervals in an interval tree that do not contain the query
I have implemented an Interval Tree in Java as outlined in the CLRS algorithm book (it uses red-black tree as the underlying structure). In the book (and as far as I've seen online), it discusses how ...
-1
votes
3answers
60 views
Why does strcpy read extra characters?
I just have a question(s) about making a binary tree, as this code doesn't work, it places nodes where they shouldn't go, and although it never crashes its leaking memory like a busted pipe. The idea ...
0
votes
1answer
34 views
How to convert an array tree to Json tree?
I have an array that keep the data in tree structure but I'd like to transform this data to json.
This is the example of my data :
[Object]
0: Object
children: Array[1]
0: Object
...
1
vote
0answers
10 views
BTree Complexity based on M and L and based on order of insertion and deletion
What are the big Oh for BTree that depends on M = the number of keys and L = the number of leaves?
How does BTree deal with deleting in order and in reverse order?
I am doing an analysis on how the ...
-1
votes
0answers
37 views
Drag and Drop in JQuery UI Tree
I want to have a tree, when I drag an element, its clone must be dragged and while dropping, it should open a popup asking copy or move the current element
-1
votes
2answers
42 views
general purpose Comparator for a TreeMap<Object, T>?
I need TreeMap<Object, HGHandle> but my objects are neither Comparable nor is there a common Comparator<Object>.
The order in the Tree beeing only relevant for the tree itself, is there ...
1
vote
2answers
29 views
Location hierarchy data structure
Data Structure or Data Model for location hierarchy
I have the following location types,
Airport
City
State
Country
Hierarchy is Country has a state, State has a City and a City has airport.
...
0
votes
0answers
35 views
Primefaces <p:tree /> event listeners not being called on the server - but work locally
I have an odd issue with my Primefaces p:tree data structure. When deployed to the server (GAE) the event listeners (onSelect(), onUnselect(), etc...)are not being called, although they work fine ...
-1
votes
0answers
13 views
Implementing a trie spelling complete [closed]
I implemented a basic spelling completer.
http://pastebin.com/VbZsVzMf
http://pastebin.com/spVLFHFs
I'm wondering about a couple things. Is there a simpler, more effective way to implement the ...
0
votes
2answers
22 views
Flattening a tree with parents/children and return all nodes
It's probably too late, but I can't sleep until it's solved:
I've got a tree with some parents, which have children, which have also children etc.
Now I need a function to get all nodes from the ...
0
votes
2answers
53 views
Artificial Intelligence for card battle based game
I want to make a game card battle based game. In this cards have specific attributes which can increase player's hp/attack/defense or attack an enemy to reduce his hp/attack/defense
I am trying to ...
0
votes
2answers
23 views
How to get the id on right click context menu in dojo Tree?
I want to get the node id of Dojo's tree on context menu click.
I'm making a tree in Dojo like this. Here is the id - the first param.
this.setData(
[
{ id: '5', name:'root' , ...
2
votes
1answer
49 views
Java: Fastest structure to store and retrieve large number of strings
I need to create a Java structure to store a large number of String. Then I basically need to add new strings and also check if some string is already present... The order of the strings is not ...
-3
votes
0answers
13 views
Euler Tour Technique for general tree Iteratively
How can I implement an Euler Tour Technique iteratively on any tree?
0
votes
2answers
76 views
Ocaml Tree simple functions
I created a tree
type 'a tree = {
mutable cont: 'a;
mutable left: 'a bin_tree;
mutable right: 'a bin_tree
}
and 'a bin_tree =
Empty
| Node of 'a tree;;
and I'm ...
0
votes
2answers
57 views
Binary tree challenge example [closed]
I have been watching some lectures from the excellent Richard Buckland and experimenting with binary trees but I don't completely understand how to implement one. Below is how far I have got.
...
0
votes
3answers
80 views
Similar pairs in a tree
This is a problem from a Hackerrank contest:
You are given a tree where each node is labeled from 1, 2, …, n. How many similar pairs(S) are there in this tree?
A pair (A,B) is a similar pair iff
...

