Tagged Questions

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)

96
votes
12answers
10k views

What is the most efficient/elegant way to parse a flat table into a tree?

Assume you have a flat table that stores an ordered tree hierarchy: Id Name ParentId Order 1 'Node 1' 0 10 2 'Node 1.1' 1 10 3 'Node 2' 0 ...
49
votes
11answers
25k views

Why does the C++ STL not provide any “tree” containers?

Why does the C++ STL not provide any "tree" containers, and what's the best thing to use instead? I want to store a hierarchy of objects as a tree, rather than use a tree as a performance ...
37
votes
9answers
1k views

Family Tree Algorithm

I'm working on putting together a problem set for an intro-level CS course and came up with a question that, on the surface, seems very simple: You are given a list of people with the names of ...
32
votes
8answers
19k views

Hashset vs Treeset

I've always loved trees, that nice O(n*lg(n)) and the tidyness of them. However, every software engineer I've ever known has asked me pointedly why I would use a treeset. From a CS background, I don't ...
31
votes
12answers
5k views

Storing a large number of images

I'm thinking about developing my own PHP based gallery for storing lots of pictures, maybe in the tens of thousands. At the database I'll point to the url of the image, but here's the problem: I know ...
27
votes
6answers
9k views

Database Structure for Tree Data Structure

What would be the best way to implement a customizable (meaning, a tree structure with an unknown number of level) tree data structure in a database? I've done this once before using a table with a ...
24
votes
11answers
2k views

Hashing a Tree Structure

I've just come across a scenario in my project where it I need to compare different tree objects for equality with already known instances, and have considered that some sort of hashing algorithm that ...
24
votes
3answers
8k views

Unable to show a Git tree in terminal

The article has the following inputs and outputs git co master git merge [your_branch] git push upstream A-B-C-D-E A-B-C-D-E-F-G \ ----> \ your ...
22
votes
9answers
22k views

Java tree data-structure?

Is there a good available (standard Java) data structure to represent a tree in Java? Specifically I need to represent the following: The tree at any node can have an arbitrary number of children ...
21
votes
18answers
14k views

How to determine if binary tree is balanced?

It's been a while from those school years. Got a job as IT specialist at a hospital. Trying to move to do some actual programming now. I'm working on binary trees now, and I was wondering what would ...
18
votes
2answers
335 views

Skip undo step in Vim

Let's say I'm at state A in my document. I then make changes B, C, and D (in order). Is there a way I can keep changes B and D, but skip C? Or, let's say I'm at state A in my document. I make ...
17
votes
7answers
8k views

Help me understand Inorder Traversal without using recursion

I am able to understand preorder traversal without using recursion, but I'm having a hard time with inorder traversal. I just don't seem to get it, perhaps, because I haven't understood the inner ...
16
votes
3answers
1k views

How to solve this linear programing problem?

I'm not so good at linear programing so I'm posting this problem here. Hope somebody can point me out to the right direction. It is not homework problem so don't misunderstand. I have a matrix 5x5 ...
13
votes
6answers
2k views

Storing objects for locating by x,y coordinates

I'm trying to determine a fast way of storing a set of objects, each of which have an x and y coordinate value, such that I can quickly retrieve all objects within a certain rectangle or circle. For ...
12
votes
5answers
391 views

Using iterative style to clone an object in JavaScript

Is it possible to rewrite the following JavaScript recursive function to make it faster? function clone_recursive(object) { var result = {}; for (var key in object) { var value = ...
12
votes
4answers
3k views

How to print binary tree diagram?

How can i print a binary tree in java so that the output is like: 4 / \ 2 5 My Node: public class Node<A extends Comparable> { Node<A> left, right; A data; ...
12
votes
4answers
600 views

What Self Balancing Tree is simplest in Functional Programming?

I'm designing a self balancing tree in Haskell. As an exercise and because it is nice to have in your back hand. Previously in C and Python I preferred Treaps and Splay Trees due to their simple ...
12
votes
8answers
15k views

Generic tree implementation in Java

Is anyone aware of a generic tree (nodes may have multiple children) implementation for Java? It should come from a well trusted source and must be fully tested. It just doesn't seem right ...
12
votes
6answers
14k views

What's a good and stable C++ tree implementation?

I'm wondering if anyone can recommend a good C++ tree implementation, hopefully one that is stl compatible if at all possible. For the record, I've written tree algorithms many times before, and I ...
12
votes
6answers
6k views

When to use Binary Space Partitioning, Quadtree, Octree?

I have recently learned about binary space partitioning trees and their application to 3d graphics and collision detection. I have also briefly perused material relating to quadtrees and octrees. ...
11
votes
11answers
728 views

Find all subtrees of size N in an undirected graph

Given an undirected graph, I want to generate all subgraphs which are trees of size N, where size refers to the number of edges in the tree. I am aware that there are a lot of them (exponentially ...
11
votes
1answer
566 views

Game on the tree, cutting branch

We have a forest of rooted trees. Two players makes alternating moves accroding to the following rule: one move is to cut vertex and all its children. Player which makes last move (no vertices remain) ...
11
votes
5answers
1k views

Traverse tree without recursion and stack in C

How to traverse each node of a tree efficiently without recursion in C (no C++)? Suppose I have the following node structure of that tree: struct Node { struct Node* next; /* sibling node ...
11
votes
2answers
786 views

Is there any documented free R-Tree implementation for .NET?

I found some open source R-Tree implementations in C#, but none with documentation nor signs of being used by someone else than the developer.
11
votes
8answers
1k views

OO Design Question — Parent/Child(ren) — Circular?

I'm fairly new to the OO design process, so please bear with me.... I have two entities that I need to model as classes, call them Parent and Child (it's close enough to the actual problem domain). ...
11
votes
7answers
3k views

'Head First' Style Data Structures & Algorithms Book?

I loved the Head First series book on object oriented design. It was a very gentle and funny introduction to the subject. I am currently taking a data structures class and find the text we are using ...
11
votes
7answers
5k views

How do you sort a tree stored using the nested set model?

When I refer to nested set model I mean what is described here. I need to build a new system for storing "categories" (I can't think of better word for it) in a user defined hierarchy. Since the ...
10
votes
1answer
50 views

zend custom module

I am trying to build my own zend module (.so) We have multiple functionality that can be done in our own module which will improve our performance on a high traffic website (50k+ visits a day). ...
10
votes
1answer
210 views

Python - How do I write a more efficient, Pythonic reduce?

I'm trying to build a very lightweight Node class to serve as a Python-based hierarchy search tool. See the definition below. from functools import reduce from operator import or_ class Node: ...
10
votes
4answers
699 views

What is the best way to store a tree structure in a relational DB? [closed]

There is the "put a FK to your parent" method, i.e. each records points to it's parent. Which is a hard for read actions but very easy to maintain. And then there is a "directory structure key" ...
10
votes
3answers
1k views

Hitting Maximum Recursion Depth Using Python's Pickle / cPickle

The background: I'm building a trie to represent a dictionary, using a minimal construction algorithm. The input list is 4.3M utf-8 strings, sorted lexicographically. The resulting graph is acyclic ...
10
votes
7answers
1k views

Why are Binary Trees Important?

Why we do we study binary trees specifically? As in a general m-way search tree is not given as importance as binary trees in DataStructure textbooks. Does the use of a binary tree exceed m-way ...
10
votes
4answers
2k views

Jquery Tree plugin

I need a tree plugin that has the following functionality: - add nodes (to any given node) - delete nodes (any node) - collapsable/expandable - easy access to the tree data (not sure if it is ...
10
votes
3answers
2k views

How do I print out a tree structure?

I'm trying to improve performance in our app. I've got performance information in the form of a tree of calls, with the following node class: public class Node { public string Name; // method ...
10
votes
6answers
965 views

Algorithm for Finding Redundant Edges in a Graph or Tree

Is there an established algorithm for finding redundant edges in a graph? For example, I'd like to find that a->d and a->e are redundant, and then get rid of them, like this: => Edit: Strilanc ...
10
votes
7answers
1k views

What's a good way to rewrite this non-tail-recursive function?

For some reason, I am having trouble thinking of a good way to rewrite this function so it uses constant stack space. Most online discussions of tree recursion cheat by using the Fibonacci function ...
9
votes
2answers
141 views

Is there a tree structure or algorithm to shuffle around levels in a tree?

I have what I think is an interesting problem. Basically, I have a list of Items, where each Item has a fixed set of meta-data, of different values. For example: Item 1: {Type = "Text", Author = ...
9
votes
2answers
4k views

Binary Tree in C#

Are there any objects in C# (or in .net) that represents a binary tree (or for curiosity) an n-ary tree? I am not talking about presentation tree controls, but as model objects. If not, are there ...
9
votes
4answers
823 views

Clojure: How to generate a 'trie'?

Given the following... (def inTree '((1 2) (1 2 3) (1 2 4 5 9) (1 2 4 10 15) (1 2 4 20 25))) How would you transform it to this trie? (def outTrie '(1 (2 () (3 ()) ...
9
votes
4answers
13k views

reconstructing a tree from its preorder and postorder lists

Consider the situation where you have two lists of nodes of which all you know is that one is a representation of a preorder traversal of some tree and the other a representation of a postorder ...
9
votes
10answers
2k views

Genealogy Tree Control

I've been tasked (by my wife) with creating a program to allow her to track the family trees on both sides of our family. Does anyone know of a cost effective (free) control to represent this type of ...
8
votes
4answers
83 views

Parent(), faster alternative?

I am working with a dashboard of divs and each div it has a tree of which the buttons are. Every time I have to know which the id of that div is so I am using parent() alot. Mostly I am doing ...
8
votes
7answers
310 views

Searching an array for integers in a specific range

Can someone give me ideas for the following problem? Given an array ar[] of length n, and some queries, each query is of the form a, b, c, find the number with the smallest index i such that the ...
8
votes
3answers
160 views

Tree Search Saving Execution State

I have a tree, A / \ B C /\ \ D E F represented as a list, (A (B (D) (E)) (C (F))) It actually is a very large tree so what I would like to do is start the search if I ...
8
votes
2answers
418 views

Converting Directed Acyclic Graph (DAG) to tree

I'm trying to implement algoritm to convert Directed Acyclic Graph to Tree (for fun, learining, kata, name it). So I come up with the data structure Node: /// <summary> /// Represeting a node ...
8
votes
2answers
165 views

haskell - types - functions - trees

Hey, I'm an ambitious mathematician and haskell newbie. For haskell practice I want to implement a game where students/pupils should learn some algebra playfully. As basic datatype I want to use a ...
8
votes
3answers
355 views

Balanced spanning tree (T) from undirected graph

I have connected undirected graph. I am looking for the way to construct the balanced spanning tree (T) of a graph The specific about balanced spanning tree, I could define as follows: If the root ...
8
votes
2answers
594 views

Understanding Fusion Trees?

I stumbled across the Wikipedia page for them: http://en.wikipedia.org/wiki/Fusion_tree And I read the class notes pdfs linked at the bottom, but it gets hand-wavy about the data structure itself ...
8
votes
6answers
3k views

Convert a binary tree to linked list, breadth first, constant storage/destructive

This is not homework, and I don't need to answer it, but now I have become obsessed :) The problem is: Design an algorithm to destructively flatten a binary tree to a linked list, breadth-first. ...
8
votes
4answers
1k views

Tic-Tac-Toe AI: How to Make the Tree?

I'm having a huge block trying to understand "trees" while making a Tic-Tac-Toe bot. I understand the concept, but I can't figure out to implement them. Can someone show me an example of how a tree ...

1 2 3 4 5 45