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 ...
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, ...
-2
votes
1answer
40 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 ...
0
votes
2answers
54 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
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
81 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
2answers
62 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 ...
-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 ...
2
votes
5answers
141 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 / / \ \ \ ...
0
votes
0answers
73 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, ...
7
votes
2answers
222 views

Problems with Promote() using the red-black tree implementation from The Tomes of Delphi

I am using the Red-Black tree implementation written by Julian Bucknall in his well-known book, The Tomes Of Delphi. Source code can be downloaded here, and I am using the code as-is in Delphi 2010, ...
1
vote
1answer
56 views

Determine if a binary tree is subtree of another binary tree using pre-order and in-order strings

I want to find out whether binary tree T2 is a subtree of of binary tree T1. I read that one could build string representations for T2 and T1 using pre-order and in-order traversals, and if T2 strings ...
0
votes
2answers
59 views

DFS over string trie (prefix)

I wrote the following prefix trie: class TrieNode { char letter; HashMap<Character,TrieNode> children; boolean fullWord; TrieNode(char letter) { this.letter = letter; ...
0
votes
3answers
124 views

Optimizing a Huge “OR” Pattern [closed]

I have an "OR" pattern like the following example: (X Y Z) | (X Y A B) | (X A K) | (M A J K) | (M A B) | (M Z). My problem is that the number of OR'ed operands of my real problem is huge and causes ...
1
vote
2answers
52 views

Search value in tree of dicts in python

I have a giant dict with a lot of nested dicts -- like a giant tree, and depth in unknown. I need a function, something like find_value(), that takes dict, value (as string), and returns list of ...
0
votes
1answer
108 views

Difference between red-black trees and AVL trees

Can someone please explain what the main differences between these two data structures are? I've been trying to find a source online that highlights the differences/similarities, but I haven't found ...
0
votes
1answer
38 views

Replace BST nodes with the sum of nodes greater than or equal to the node

I would like to know the algorithm for the following problem: "Given a BST(There can be duplicate nodes), replace every node with value which is sum of values of all nodes greater than equal to the ...
0
votes
2answers
58 views

Build tree out of list of parent/children in Python

Using Python, I have a list of dictionary objects that contain parent/child relationships between each other which I would like to build into a tree. For example: {'UI': 'T071', 'NAME': 'Entity', ...
1
vote
2answers
83 views

Algorithm to traverse a binary tree level by level starting from root

Can anyone suggest an algorithm to traverse a binary tree level by level starting from root?
-1
votes
1answer
69 views

Finding most effective upper bound for TSP using MST

I'm curious as to what the most effective methods are to find the most optimal (or close to optimal) upper bound for the TSP using a MST. I'm trying to optimize my algorithms for speed, but I'm ...
1
vote
1answer
88 views

How do I construct a non-binary tree based on the preorder&inorder or postorder&inorder traversal?

Two of the exercises for my Data Structures and Algorithms class sound like this Construct the tree whose preorder traversal is: 1, 2, 5, 3, 6, 10, 7, 11, 12, 4, 8, 9, and inoder traversal is 5, ...
2
votes
1answer
94 views

Finding visible node in binary tree

A binary tree T is given. A node of that tree containing value V is described as visible if the path from the root of the tree to that node does not contain a node with any value exceeding V. In ...
0
votes
1answer
45 views

To find out the level of level-by-level tree traversal

I am wondering how to find out the level where each node is. But I can't figure it out. Here is the part of the section of the code, but I have to modify it. if(root == NULL) return; ...
0
votes
0answers
53 views

How to build an array from tab delimited text file using php

The format of the tab delimited file is like this: 1. each line has only one item; 2. each line has a few tabs(0-n); n could be infinite; 3. the parent-child relationship is defined by the tabs count; ...
2
votes
2answers
50 views

RB Tree insertion order sensitivity

Given an interval of integers I, an RB Tree R which has n unique elements from I and a sequence S of n unique elements from I whose values are not in R, would the performance of inserting S into R ...
5
votes
2answers
185 views

Counting Zero-Sum Paths in a Tree [closed]

We are given a tree with N (up to 100,000) nodes. Each edge is weighted either +1 or -1 and nodes are numbered from 1 to N. How many unordered pairs (A, B) exist such that on the path A -> X -> ...
2
votes
2answers
54 views

Edge cutting in Trees

A tree can be split into two different trees by removing one of its edges. Given a tree with N nodes uniquely identified by integer numbers in the [0, N-1] range, I need to write a function that finds ...
1
vote
2answers
110 views

How to traverse through a adjacency matrix?

A adjacency matrix presents connections between nodes in a arbitrary tree. Here is a instance of adjacency matrix which presents a undirected graph: 1 2 3 4 1 0 1 1 0 2 1 0 1 0 3 1 1 0 0 4 0 0 0 ...
0
votes
1answer
322 views

Create binary tree from inorder and post order traversal

I was trying to familarize with the question of creating a tree given inorder and postorder traversal. I wrote the following code, but some thing is going wrong which i was unable to find out. Can ...
0
votes
1answer
63 views

Inserting into Augmented Red Black Tree

I am looking at the code of inserting into an augmented Red black tree. This tree has an additional field called "size" and it keeps the size of a subtree rooted at a node x. Here is the pseudocode ...
0
votes
1answer
74 views

Can we have a red-black tree without any red nodes? [closed]

I wonder whether a red black tree should have at least one red node. Also, given a BST, if we can convert it into an RBT, is there a unique way to turn this tree into a red-black tree?
1
vote
1answer
76 views

Disk based indexing for multi dimensional data

I want to use some kinda disk based indexing for multi dimensional data. I want to be able to perform range searches - (10 - 20% of application usage) faster retrieval - (80%) data size ( in order ...
2
votes
3answers
116 views

Inserting into red black tree

I am taking an algorithms course and in my course slides, there is an example of insertion into a red-black tree: My question is, why don't we let "2" be a leaf node here? It looks like if we let ...
1
vote
1answer
150 views

Tree/Graph Traversal: Find maximum value path

I'm attempting to, given a graph G with integer values and N levels, sum the values from the root to a leaf node. Find the maximal sum of these path values. Children nodes can have multiple parents, ...
1
vote
0answers
72 views

The algorithm to draw and process the relationship coordinate between parent and child nodes as topology tree

I have a data construction with the relationship of parent node and child node in JavaScript like this: var data = { 'name': 'A1', 'children': [ { 'name': 'B1', ...
0
votes
0answers
48 views

How to calculate a z-index?

I can't seem to figure myself an unique z-index for my custom tree structure considering that each node has it's absolute level and it's absolute index withhin it's direct parent. Any idea how to ...
6
votes
2answers
166 views

Red Black Tree inserting: why make nodes red when inserted?

In Red Black Tree Properties doesn't contain any rule for insert node color, how ever always we are inserting red color nodes. If we insert black color node does it violate any Properties( any rule ...
0
votes
1answer
285 views

BIT:Using a binary indexed tree? [closed]

A binary indexed tree has very less or relatively no theory to study as compared to other data structures. The only place where it is taught succinctly is the topcoder tutorial. Although the tutorial ...
0
votes
2answers
78 views

What is the difference between tree depth and diameter?

Hi Im little confused with the difference between the depth and the diameter of a tree.Sorry if Its already asked but I couldn't find it.
0
votes
3answers
66 views

How to find a tree leaf from flat data

I have a tree data similar to this: [0] => id = 5, name = "TV", parent_id = 1, children => [0] => id = 6, ...
1
vote
1answer
46 views

Amortized cost for a (fixed) balanced tree

Suppose I have a constant (once built doesn't change) balance tree with N nodes, every internal node having p children. Obviously the worse case scenario for accessing a node is logp(N). But what ...
1
vote
1answer
226 views

Complexity of inserting n numbers into a binary search tree

I have got a question, and it says "calculate the tight time complexity for the process of inserting n numbers into a binary search tree". It does not denote whether this is a balanced tree or not. ...
1
vote
1answer
46 views

Heaviest path in special graph (PHP)

I have to search the heaviest path in graph what like: 1 2 1 4 5 8 2 2 3 4 (1,1,8,4 in this example) The graph like this ever. So it is an element who has two children ...
0
votes
1answer
83 views

Find common shortest edge between multiple paths in tree

Given a undirected, weighted tree (N node, N-1 bidirectional edge, not necessarily binary tree). Input will be simple paths (from start node to lowest common ancestor to finish node) between some ...
1
vote
1answer
196 views

Find longest path between set of nodes in a tree

Recently came across a programming question. Given a tree, can be non-binary, can be a single chain (or linear), with N nodes. Input will be a set of K nodes, denoted a1,a2....ak. I'd like to find ...
1
vote
1answer
92 views

Common segment of longest paths in a tree

I came across a programming questions where one will be given a weighted tree. Set of nodes one is interested in, let us call this set S. We need to return the shortest of the common segment of ...
0
votes
2answers
101 views

How can you iterate a k-ary tree?

Assume you have a generic k-ary tree like this one or this one Repeating the latter here: template <typename T> struct TreeNode { T* DATA ; // data of type T to be stored at this TreeNode ...
0
votes
1answer
92 views

find path between root and multiple of 5

I am facing hard time to implement a program for finding the path to a node from b-tree root which is a multiple of 5. Example: 12 / \ 4 7 /\ /\ 5 3 4 10 Consider this as ...
1
vote
1answer
68 views

Implementing Consolidate in Fibonacci heap

The pseudocode from Introduction to Algorithms states: for each node w in the root list of H link trees of the same degree But how to efficiently implement the for each root node part? Original ...

1 2 3 4 5 12