A tree is a widely-used data structure that emulates a hierarchical tree-like structure with a set of linked nodes.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

AVL TREE GUI ERROR?

I try to implements an AVL tree on JPanel. At first I got it Right, but there are some mistakes. example : if I insert 1,2,3,4,5,6,7,8,9,10 it become like --------------------------------------4--- ...
2
votes
2answers
42 views

Using standard library in C++, copy algorithm

I am trying to learn the standard library in C++ and I'm trying to run my code, but I can't succeed. What have I forgotten and what do I need to add in my class "Class" to make the program run as it ...
4
votes
0answers
21 views

what is the memory overhead for boost::property_tree::ptree

I have found that boost::property_tree::ptree has an enormous memory overhead. My estimate is that an empty ptree is about 150 bytes, and, any entry put in a ptree adds at least another 150 bytes. ...
-2
votes
1answer
39 views

OCaml: Adapting recursive function

i've lost all my day in this problem. So, i have a recursive function like that: let rec rewriteTree tree = rewriteElement tree c; List.iter rewriteTree tree.subtree in rewriteTree ...
0
votes
0answers
12 views

standard deviation M5P

I am using the M5P() trees from the RWeka package. I have two questions: Interpretation of output: What do the numbers in brackets mean (see example below)? M5 pruned model tree: (using smoothed ...
0
votes
1answer
13 views

Preload all children for dojo dgrid

So I'm a first time user of dgrid, and I'm currently building my tree grid like this: var SelectionGrid = new declare([OnDemandGrid, Selection, Keyboard]); var myGrid = new SelectionGrid({ ...
0
votes
0answers
8 views

Query about BK Trees

I am implementing BK trees for spell checking in C++. The thing is, the results are not accurate at all. Even if I write a correct word, it doesn't return that word, rather it returns some other ...
1
vote
4answers
61 views

Which collection should I use to check if a value is in the collection of 100K elements?

I am new to Java and I do not know the differences between java collection implementations. I have to process up to 100K records of imported data. There might be duplicates on that list. I have to ...
0
votes
1answer
21 views

I'm looking for a jquery plugin

Which could draw lines between 2 divs and more. In fact, I would have 3 divs on my page, named choice 1, choice 2 and choice 3 Each choice would get the responses linked to this choice, for example ...
1
vote
0answers
21 views

Converting BST to DLL in Java

I'm trying to convert a binary search tree to a doubly, circular linkedlist without the use of any helper methods. This code is only returning the larger half of the values and the smaller values are ...
0
votes
0answers
33 views

Feedback / Critique on Tree Structure

So I've been writing this data structure for a few days, and now I'm really curious about what it actually is, and to get some critique on my logic. A branch, based on this usage, exists when a HEAD ...
1
vote
3answers
60 views

Object oriented design, designing a tree

I'm creating a (atypical)tree in Java that will be composed of three classes: node, branch and leaf Each node stores the branches it is connected to in a HashSet. The branch is supposed to lead to a ...
0
votes
2answers
24 views

Using Java TreeModel

I know that this question has been asked here: Java tree data-structure? But what is the best practice in implementing a tree in Java? The second most voted answer in the question linked above ...
0
votes
1answer
35 views

fill a binary tree with two functions

I need to implement a binary tree in java, where the value of a right node is calculated with function1() which takes the parent and parent of parent nodes as input and the value of a left node is ...
0
votes
0answers
16 views

“Show More” button in GWT CellTree does not appear

dear users! I have a problem creating a CellTree widget in GWT 2.5. It is filled with data from the server using RequestFactory. The amount of data is too large to display it all at once, so I have ...
0
votes
1answer
12 views

Flex - Transparent Tree component

I'm using a tree component to show a menu, but I need the background to be transparent. How can I do this? :) I could make a new "skin" or create a new class (using the old tree) where I remove the ...
1
vote
1answer
19 views

Traversing a json abstract syntax tree to build boolean expression

After doing hours of research on google and stack overflow, I've come to the conclusion that the following JSON structure properly describes a boolean expression. I'm not terribly keen on algorithms, ...
0
votes
1answer
13 views

How to model boolean expressions in JSON tree structure

I've spent a few hours on google and stack overflow, but I'm yet to come to a conclusion on just how to model nested boolean data. Let's say I have the following expression: 123 and 321 and (18 or ...
2
votes
1answer
82 views

Recursion in treeFold function

I have tree data type: data Tree a = Node { rootLabel :: a, -- label value subForest :: [Tree a] -- zero or more child trees } {-- Node (a) [] ..or... Node (a1) [ Node (a2) [..], ...
-1
votes
1answer
56 views

search function not working properly in trie implementation

#include<iostream> using namespace std; struct node { node* children[26]; int value; char data; node() { value = 0; for(int i = 0; i < 26; i++) { children[i] = ...
0
votes
1answer
51 views

Get the the max depth of a tree in Lua

I've seen this in other languages but my Lua implementation is tripping me up. I have a tree structure and I'm trying to write a recursive function to find the max depth of a tree. A node is a table ...
0
votes
0answers
9 views

WindowTester - Accessing file system (tree) item in a rcp client

I am wondering weather it is possible to reach tree elements in a Java RCP-Client which display a file system by using googles windowtester pro. The tree (swt widget) shows my local file system ...
2
votes
1answer
84 views

Boost Intrusive/binary search trees

I'm looking for a binary search tree for a Voronoi tessellation algorithm (Fortune's algorithm; a darned non-trivial task in itself, methinks), so of course, I thought I'd have a look at Boost. Boost ...
2
votes
3answers
50 views

C++ API performance issue with tree structure

I'm programming an API for a C++ simulation framework. And I want to use this API for example in C#. But I am having a performance issue with getting the positions of all the characters in the ...
1
vote
0answers
25 views

MSSQL CTE tree with filter how to?

There's a table that describes object hierarchy and their type: DECLARE @TTable TABLE ( ID int ,Higher int -- for some reason this is how ID_PARENT named ,[Type] int ) I need to select a subtree ...
-5
votes
2answers
35 views

How Can I Make an Red & Black Tree? [closed]

I have read many books and article about algorithm of Red&Black tree. But I think I can't make the source code from that Algorithm. Can you give me an simple source code please? thank you.
0
votes
0answers
3 views

Reading data from text box and adding to xml file of tree view

I want to read data from text box and update it to xml file of treeivew. I found xml serialiation from code project site ,now i don't know how to add the text box value to xml file. Here is the xml ...
1
vote
1answer
58 views

Add elements in 'a tree in Ocaml

So, here is my problem.. I need to write a function that will add elements in a tree and it is a binary tree, so it must be well organized. The problem is in how is my tree defined. I have this tree: ...
0
votes
1answer
40 views

Iterating over a vector defined in a struct

I am working on a non-binary tree structure, and so for that I have a struct defined as follows which has a data and all it's child are in a vector called child. struct node{ string data; ...
0
votes
0answers
29 views

Doctrine2 [Semantical Error]

When I try to use this query: if ($searchNews->category) $qb->andWhere($qb->expr()->eq('c.id', $searchNews->category)); It returns this error: [Semantical Error] line 0, col ...
0
votes
0answers
27 views

Directory tree only finding directories and not files within them

I'm in the process of building a directory tree in c++. The idea is to store start at some given filepath, and make a tree from all the Directories and files. so for example, the Directory may have ...
3
votes
0answers
61 views

Rendering Large Rectangular Tiled Images with an OpenGL QuadTree

I am currently designing and developing a bespoke imagery viewer for exceptionally large image files (sometimes in the gigapixels). Fortunately these are provided as 256x256 tiles in staged resolution ...
0
votes
0answers
22 views

How to get all the parent of a leaf node in Tree Flex

I need to display all the parent nodes of a leaf node in a Tree in Flex.How can this be achieved? Asia India Chennai Madurai Trichy If I click on Madurai I need to get ...
0
votes
0answers
19 views

convert Array of paths/directories to flare.json-like json

I have an array of nested Directories with there sizes. I need to get them into a json-structure like this to display a 3d.js sunburst-chart. [Or any Object, Nested Array i can work with] My approach ...
3
votes
1answer
131 views

Haskell - Finding the max value of node in a tree

I have a problem. I have to implement a function maxT in Haskell which returns the max value of a node from a binary tree. data Tree a = Leaf a | Node (Tree a) a (Tree a) This is given. What ...
0
votes
1answer
21 views

Number of binary tree with n node and n-3 height

How many binary trees can find that have n Node and the height of these tress are n-3?
2
votes
1answer
22 views

Collapse all trees in jquery checkboxtree

I use jquery checkboxtree and I would like to start tree in collapsed mode. I use this: $(document).ready(function(){ $('#ch_group_menu').checkboxTree(); }); I will tree and all childs ...
0
votes
1answer
52 views

How to UPLOAD a file into my JS application?

I am working on extjs 4.2 application. Trying to create a menu toolbar where I can add and delete files. For example: When I press Open, I want to see the file browser window. And when I finish ...
-1
votes
0answers
17 views

Convert PHP Tree Array to Array List

i'm a newbie, and i have a problem with my array. I need to convert a tree array to an array list. This tree array: `Array ( [0] => Array ( [cat_id] => 1 [cat_name] => ...
-2
votes
1answer
25 views

Binary Tree Insert Algorithm

I recently finished implementing a Binary search tree for a project I was working on. It went well and I learned a lot. However, now I need to implement a regular Binary Tree... which for some reason ...
0
votes
0answers
30 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
33 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
15 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
13 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 ...
1
vote
1answer
49 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
39 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
43 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
31 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
25 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
26 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): ...

1 2 3 4 5 88