A tree is a widely-used data structure that emulates a hierarchical tree-like structure with a set of linked nodes.
0
votes
1answer
35 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
60 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
43 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
30 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
44 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
25 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
55 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
29 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
53 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
15 views
Euler Tour Technique for general tree Iteratively
How can I implement an Euler Tour Technique iteratively on any tree?
0
votes
2answers
91 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
58 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
82 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
...
0
votes
1answer
71 views
How to find the parent of a node in Left Child Right Sibling Tree?
I want to find the parent of a node N in a Left Child Right Sibling Tree. The tree has ordered children and there's no limit for the number of children.
Node getParent(Node n)
{
....
return ...
1
vote
1answer
33 views
Building and inorder traversal of tree: > 2 sons
I need to read in from an Access database a list of members. Each member was sponsored by another member. Each record contains the ID of their sponsor and their own ID. I now must be able to ...
-1
votes
1answer
50 views
Build a tree from a XML file using XSLT?
Being a XML file, I know to generate some output by the XSL. But I need to build a navigation tree either to hidden the contents that I don't have to look at or show those I want to. Tree that I am ...
0
votes
0answers
43 views
Make a Hierarchy Panel Showing an ArrayList and Its Contents in a Tree Format
How to Make a Hierarchy Panel Showing an ArrayList and Its Contents in a Tree Format in Java?
I've got several shape classes like GRectangle, GEllipse, GCircle and all of these classes extend GShape ...
0
votes
2answers
63 views
Finding ALL paths between 2 points on a square Matrix
READ CAREFULLY BEFORE MARKING AS DUPLICATE!
I have a matrix:
0 0 0 x 0
0 0 0 0 0
0 0 0 0 0
0 x 0 0 0
0 0 0 0 0
You CANNOT move diagonally in the matrix!
I want to find ALL possible paths between ...
0
votes
1answer
32 views
SharePoint Library Tree View for Outlok Addin
I am currently developing an Outlook Addin, this is my first time doing something Object oriented,
I'm a beginner, but since you all must have been there at somepoint i think you can all be ...
0
votes
1answer
9 views
Jface TreeViewer diposed during refresh()
what if I do a viewer.refresh() at the same time I close the tree viewer on the UI.
What will happen and how I can handle this situation?
thanks,
1
vote
2answers
60 views
inserting node (Binary search tree) C
I'm trying to insert a node in a binary search tree and I'm getting a little problem.
#include "stdafx.h"
#include <string.h>
#include <stdlib.h>
typedef struct Node{
char ...
2
votes
1answer
40 views
Difference between PriorityQueue and TreeSet in Java? [duplicate]
I am trying to understand when to use the two data structures. As far as I have understood the PriorityQueue is also implemented as a tree as the documentation states that the avg time for insert ...
4
votes
4answers
120 views
Nil Value for Tree a -> a in Haskell
So I have a tree defined as
data Tree a = Leaf | Node a (Tree a) (Tree a) deriving Show
I know I can define Leaf to be Leaf a. But I really just want my nodes to have values. My problem is that ...
0
votes
3answers
36 views
how to print leaf nodes in a binary tree right to left?
i had a job interview yesterday, and one of the question was " find the
pseudo code of printing a leaf nodes in a binary tree, from right to left.."
i thought about it over and over, and i looked ...
0
votes
1answer
92 views
How to structure a family tree using PHP and mysql?
My main goal is to create a website where people can register and create their family trees. My current database looks like this:
Users table (username, password, userid, userlevel, email, timestamp)
...
0
votes
0answers
8 views
How to make the two binary sort tree which has been completed into a AVL tree
I have known that we can iterate through the original tree,and to copy a AVL tree.But if I have a binary sort tree which is not a AVL,how can I Modify the original tree to make it directly into a AVL.
...
0
votes
3answers
86 views
Bootstrap accordion for nested navigation tree in Kirby
I have a pretty complex nested accordion tree navigation "working" @
http://www.medlargroup.com the test site for a client.
It appears to work correctly only it is not collapsed by default and so is ...
0
votes
0answers
42 views
ExtJS Tree duplicates data
I have a tree inside a closable tabpanel item, that can be opened and closed when needed. First time when opened, the tree is working fine. When I close the tabpanel and open it again from the menu, ...
1
vote
0answers
36 views
What is considered the best Java Suffix Tree implementation?
I need a suffix tree Java Implementation. After some googling I concluded that the libdivsufsort C implementation is the best one around. Is there a Java implementation of the same (or almost as good) ...
0
votes
0answers
24 views
Git command to list SHA1 hashes for all tree objects
Using the command git show-ref --tags I can see all the tags and the SHA1 hashes for all these tags.
I would like a similar command for trees: a command to output all the SHA1 hashes for all the ...
-3
votes
0answers
160 views
No of Trees possible with n nodes ( given some conditions)
Let's define a good tree:
It is a tree with k * n nodes labeled from 0 to k * n - 1
Node i and node j are not adjacent, for all 0 <= i, j < k * n such that i div k = j div k (here div means ...
1
vote
1answer
57 views
Java: Inconsistent NullPointerException
I am having trouble with a method in Java thats throwing up an error:
Exception in thread "main" java.lang.NullPointerException
at FamilyTree$FamilyTreeNode.access$9(FamilyTree.java:5)
at ...
1
vote
3answers
61 views
Clojure: Store and Compile Large Derived Data Structure
I have a large data structure, a tree, that takes up about 2gb in ram. It includes clojure sets in the leaves, and refs as the branches. The tree is built by reading and parsing a large flat file ...
0
votes
3answers
54 views
Implementing my own tree Iterator in Java
I as trying to implement the Iterator interface for tree traversal. I am getting the following error."Incompatible types at for(Integer node : tr )" and "treeIterator.java uses unchecked or unsafe ...
2
votes
5answers
142 views
How do I create a tree out of this?
I have a text file which has content like this:
a.b.c.d
a.c
a.d
a.x.y.z
a.x.y.a
a.x.y.b
a.subtree
I want to make this into a tree:
a
/ / \ \ \
...
1
vote
1answer
110 views
Haskell How to convert general tree to Data.Tree
I have declared my general tree as follows
data GeneralTree a = EmptyTree | Node a [GeneralTree a]
I have built an instance of this GeneralTree. Now I want to convert it to the Tree type declared ...
0
votes
1answer
18 views
Wordpress / OptionTree reference in css
I use this plugin to dynamicly change the css in a userfriendly way within the wordpress backend:
http://wordpress.org/extend/plugins/option-tree/
I set it up, and appended it to the theme (not a ...
-2
votes
0answers
14 views
Tree Graph Network library [closed]
Looking for a library to build Trees, Graphs, or Networks that also implements the common graph algorithms (BFS, DFS, Spanning Tree, etc.) preferably in java.
I found JUNG while searching but I am ...
3
votes
1answer
77 views
A tree structure in SQL Server that needs to be flattened in a very special way
We have a table which looks like this :
CREATE TABLE Hierarchy (EmployeeID int not null, parentID int, orderlimit int)
CREATE TABLE Order (EmployeeID int not null, OrderSize int)
It's supposed to ...
0
votes
1answer
16 views
ANTLR rewrite rules in grammar file
I have a rule that looks like this:
a : (b | c) d;
b : 'B';
c : 'C';
d : 'D';
With this grammar ANTLR builds a flat parse tree. How can I rewrite the first rule (and leave the other two ...
0
votes
0answers
78 views
Java: Algorithm for Searching Tree Structure of Nodes
Im working on a "family tree" program in java, and I am having trouble wrapping my head around an algorithm for searching through the nodes.
A node consists of a Name, and link to a partner, sibling, ...
1
vote
0answers
23 views
Directed or bi-directed and MSSP
Firstly i wanted to ask. If I have a undirected graph and split all the edges into two directed edges is it still called directed or it becomes bi-directed?
The main question is i have a graph with ...
2
votes
2answers
117 views
ExtJS4: TreePanel Store is loading the json File again and again by Itemclick
I have a json which has 3 main-menupoints. In the first menupoint, there is one submenu, so the menupoint 1 is no 'leaf'. When I click at the folder Symbol, the whole menu (the whole json file) is ...
0
votes
1answer
49 views
Extracting specific leaf value from nltk tree structure with Python
I have some questions about NLTK's tree functions. I am trying to extract a certain word from the tree structure like the one given below.
test = Tree.parse('(ROOT(SBARQ(WHADVP(WRB How))(SQ(VBP ...
0
votes
2answers
27 views
Tree structure which sorts but retains original order of elements
I'm searching for a tree structure (like a binary tree) with the following qualities:
The elements in the tree can be traversed in order
The original order of elements can be retrieved
It can do the ...
8
votes
1answer
184 views
How to define a tree-like DAG in Haskell
How do you define a directed acyclic graph (DAG) (of strings) (with one root) best in Haskell?
I especially need to apply the following two functions on this data structure as fast as possible:
...
0
votes
0answers
50 views
Tree drag drop with copy or move icon
I have a tree, with dragdrop.
enableDD: true,
ddAppendOnly: true,
And I can copy or move nodes by pressing spec key on keyboard.
this.on('beforenodedrop', function (e) {
...
0
votes
1answer
34 views
C - Null pointer issue on AVL tree rotation implementation
I'm implementing an AVL tree in C. I've posted my tree rotations below, as well as the valgrind errors I get when I try to test them.
Why am I getting these errors? I understand that the valgrind ...



