Tagged Questions
For issues relating to creating, maintaining, or displaying a hierarchy of data or resources, etc.
20
votes
1answer
5k views
How to view hierarchical package structure in Eclipse package explorer
OK I have a feeling I'm doing something that's not "accepted practice" but here's what I would like: in the Eclipse package explorer, I see the following: (dot represents a clickable arrow that I can ...
15
votes
4answers
3k views
Storing Directory Hierarchy in a Key-Value Data store?
What is a clean/efficient method for storing the directory Hierarchy/tree in a Key-Value database (in my case MongoDB but any of them).
For example a tree structure
- Cars
+ Audi
+ BMW
...
12
votes
1answer
1k views
SQL Server 2008 Hierarchy Data Type Performance?
How does SQL Server 2008's Hierarchy data type perform compared to using the hierarchy implementation described by Joe Celko here: http://www.intelligententerprise.com/001020/celko.jhtml?
I've used ...
11
votes
1answer
299 views
How to organize Haskell modules with instances: stick to data type vs type class?
The general question is which module structure is more convenient when adding instances for existing objects? Which pros and cons there are?
Let's say I want to add NFData instance for Seq type. I ...
11
votes
2answers
3k views
iPhone SDK difference between isKindOfClass and isMemberOfClass
Can any one tell me what the difference is between the isKindOfClass:(Class)aClass and the isMemberOfClass:(Class)aClass functions?
I know it is something small like, one is global while the other is ...
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 ...
8
votes
2answers
304 views
A good design pattern for implementing different behaviors on a subject
What is the best design for this scenario?
I have different Object types: User, Channel, MessageBox, UserGroup, etc.
User and Channel can have permission on other objects. For example User has the ...
8
votes
5answers
874 views
2D Game: Fast(est) way to find x closest entities for another entity - huge amount of entities, highly dynamic
I'm working on a 2D game that has a huge amount of dynamic entities.
For fun's sake, let's call them soldiers, and let's say there are 50000 of them (which I just randomly thought up, it might be much ...
7
votes
3answers
536 views
What's the best C# pattern for implementing a hierarchy with an enum?
I'm implementing value types which represents a distance (or length).
There's an enum that represents the different units of measure, eg:
public enum DistanceUnit
{
Millimeter,
Centimeter,
...
7
votes
3answers
3k views
How to mix inheritance strategies with JPA annotations and Hibernate?
According to the Hibernate Reference Documentation it should be possible to mix different inheritance mapping strategies when using Hibernate's XML-Metadata:
...
7
votes
1answer
250 views
SQL Query: Hierarchical Coalesce
I have a table that defines a heirarchy:
Create Table [example] (
id Integer Not Null Primary Key,
parentID Integer Null,
largeData1 nVarChar(max) Null,
...
7
votes
2answers
3k views
JPA: How to have one-to-many relation of the same Entity type
There's an Entity Class "A". Class A might have children of the same type "A". Also "A" should hold it's parent if it is a child.
Is this possible? If so how should I map the relations in the ...
7
votes
1answer
209 views
When and how should independent hierarchies be used in clojure?
Clojure's system for creating an ad hoc hierarchy of keywords is familiar to most people who have spent a bit of time with the language. For example, most demos and presentations of the language ...
7
votes
2answers
342 views
High-Performance Hierarchical Text Search
I'm now in the final stages of upgrading the hierarchy design in a major transactional system, and I have been staring for a while at this 150-line query (which I'll spare you all the tedium of ...
7
votes
1answer
1k views
CTE to traverse back up a hierarchy?
I can find all the children of a given record in a hierarchical data model (see code below) but I'm not sure how to traverse back up the Parent/Child chain with a given Child ID. Can anyone point me ...
7
votes
9answers
1k views
Select products where the category belongs to any category in the hierarchy
I have a products table that contains a FK for a category, the Categories table is created in a way that each category can have a parent category, example:
Computers
Processors
Intel
...
6
votes
1answer
98 views
My alernative to nested sets for arbitrary-depth hierarchical data sets: Good or Bad?
While recreating my CMS, I wanted an alternative to the traditional parent/child approach for managing the sitemap / page hierarchy. I had remembered seeing the nested set model a while back, but ...
6
votes
4answers
135 views
Clojure states within states within states
I'd love to hear what advice the Clojure gurus here have about managing state in hierarchies. I find I'm often using {:structures {:like {:this {:with {:many 'levels}} } } } and if I want to track ...
6
votes
2answers
121 views
Storing hierarchical data in MySQL with high write load
I am building web application that should have high write load and thousands, even millions of hierarchical records representing user defined/constructed trees. I am not trying to build forum with ...
6
votes
2answers
1k views
SQL Data Hierarchy
I have looked through a few SQL hierarchy tutorials, but none of them made much sense for my application. Perhaps I am just not understanding them correctly. I'm writing a C# ASP.NET application and I ...
6
votes
4answers
445 views
Moving a git repository up one hierarchy level
Git beginner question:
I have a small private webproject which is versioned locally with msysgit. There is no exterior repository, as it's only for me, so i can bascially do whatever I want.
I've ...
6
votes
3answers
2k views
Make *ALL* Wordpress Categories use their Parent Category Template
I want to change the default template hierarchy behavior, and force all subcategory level pages that don't have their own category template file to refer to their parent category template file. In my ...
6
votes
2answers
2k views
Question about SQL Server HierarchyID depth-first performance
I am trying to implement hierarchyID in a table (dbo.[Message]) containing roughly 50,000 rows (will grow substantially in the future). However it takes 30-40 seconds to retrieve about 25 results.
...
6
votes
10answers
2k views
Walking a tree, parent first
What is the best way to visit all the nodes of a linked tree (all nodes have references to parent and all children, root nodes have null as parent), so that no node is visited before any of its ...
5
votes
3answers
84 views
regex, php, and the evil nested (?R)
UPDATE
So I am still messing with this, and have gotten as far as finding all the instances of tags, though I'd rather JUST find the deepest stacked instance, as life would be easier that way.. ...
5
votes
2answers
70 views
How to check if one contour is nested/embedded in opencv
I have two contours and I want to check the relation between them (if one of them is nested).
Normally, I would use the findContours function with CV_RETR_TREE retrieval mode. However, I obtained the ...
5
votes
4answers
246 views
How to query a MySql table to display the root and its subchild.
UserID UserName ParentID TopID
1 abc Null Null
2 edf 1 1
3 gef 1 1
4 huj ...
5
votes
6answers
269 views
Interesting tree/hierarchical data structure problem
Colleges have different ways of organizing their departments. Some schools go School -> Term -> Department. Others have steps in between, with the longest being School -> Sub_Campus -> ...
5
votes
4answers
174 views
Inheritance hierarchy vs. multiple inheritance (C++)
Well, I was thinking about a design decision for the past few days and since I still cannot favor one over the other I thought maybe someone else has an idea.
The situation is the following: I have a ...
5
votes
5answers
149 views
Hierarchy and design patterns question
I'm modeling a document class for a system. The document can be one of two types: in or out.
If the type is in, the document has a sender. The sender can be one of two types: person or company.
...
5
votes
1answer
425 views
Implementing NSCopying in Subclass of Subclass
Hey guys, I have a small class hierarchy that I'm having trouble implementing copyWithZone: for. I've read the NSCopying documentation, and I can't find the correct answer.
Take two classes: Shape ...
5
votes
1answer
1k views
Category Hierarchy (PHP/MySQL)
I am trying to get my all categories and sub-categories from MySQL database in a hierarchy:
My result should be like that (just example):
Cat A
Sub-Cat 1
Sub_Sub_Cat 1
...
5
votes
2answers
1k views
Recursive Query - Only select nodes where leaf nodes represent active data
Given the following recursive query:
WITH DepartmentHierarchy (DepartmentID, Name, IsInactive, IsSpecial, ParentId, HierarchyLevel) AS
(
-- Base case
SELECT
DepartmentId,
Name,
...
5
votes
1answer
292 views
Where to manage ACL inheritance?
Where should I best manage a hierarchy of ACLs?
I see three possibilities to manage a hierarchy of ACLs:
1) The ACLs themselves manage the hierarchy:
class Acl {
Acl parent;
// ...
}
2) ...
5
votes
3answers
975 views
How should a REST URL schema look like for a tree hierarchy?
Let's assume that I have stores, shelves in a store, and products on a shelf. So in order to get a list of products on a shelf in a store, I'd use the following request:
GET ...
5
votes
9answers
4k views
I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from?
I wish to implement a deepcopy of my classes hierarchy in C#
public Class ParentObj : ICloneable
{
protected int myA;
public virtual Object Clone ()
{
ParentObj newObj ...
5
votes
6answers
6k views
Where can I find .NET Framework class diagram?
I just need a file (picture, pdf or other type file for printing) of the framework structure.
It is very usefull while learning .Net framework.
4
votes
1answer
71 views
MEF container hierarchy and GetExports<T>
I am using container hierarchy to control IDisposable parts lifetime. Child container is attached to the filtered catalog that contains non-shared parts. Here is a code snippet:
...
4
votes
3answers
187 views
D adding functionality to classes in an uncoupled way
I wrote a class called Container which handles hierarchies (as visible to the class user) and converts them internally to a flat array. So for the outside of Container it looks like a hierarchy of ...
4
votes
3answers
81 views
Regroup Java classes by packages in Eclipse
I have a large number of Java projects in Eclipse, all containing source code with common package hierarchy. Only the last subpackages differ.
It is a real pain to navigate through the projects to ...
4
votes
2answers
175 views
What's the meaning of bits in '/usr/include/c++/4.4/bits/'
What's the meaning of bits in '/usr/include/c++/4.4/bits/'
Linux, gcc of course.
4
votes
3answers
201 views
Project files' tree
How do you organize your files in project, Are there any articles or recommendations how to organize your file hierarchy in your project, I am interested in how to name folders, to separate sources ...
4
votes
1answer
371 views
Category Hierarchy (in order) using PHP MySQL
I am trying to ORDER my all categories and sub-categories in a hierarchy:
The main point is how to get them from MySQL ORDERLY (using POSITION field)
Cat A --> position 10
Sub-Cat 1 --> ...
4
votes
3answers
196 views
Object browser for PHP
I want to browse huge amounts of code written in PHP and it would be useful to have a graphical representation of various classes and their methods.
Do you know of (free) tools making this possible?
4
votes
3answers
189 views
C++: tall class hierarchies
What are the run time disadvantages of having a tall class hierarchy?
Let's call H the height of the hierarchy (ie: how many classes are traversed to go from the base class to a leaf).
dynamic_cast ...
4
votes
4answers
385 views
Creating Taxonomy Table in MySQL
I am creating a botanical database where the plants will be organized by their taxonomy:
Life
Domain
Kingdom
Phylum
Class
Order
Family
Genus
Species
I was considering using the example put forth by ...
4
votes
2answers
373 views
SVN - collecting multiple projects into a single baseline version
I'm really new to subversion and the concepts of version control, and while I can handle checking in a handful of files into a project, I need some advice on how to scale this up for my needs.
...
4
votes
3answers
311 views
How should I deal with object hierarchies in a RESTful API?
I am currently designing the API for an existing PHP application, and to this end am investigating REST as a sensible architectural approach.
I believe I have a reasonable grasp of the key concepts, ...
4
votes
4answers
946 views
Linq extension method, how to find child in collection recursive
I'm already familiar with Linq but have little understanding of extension methods I'm hoping someone can help me out.
So I have this hierarchical collection pseudo code ie:
class Product
prop name
...
4
votes
2answers
435 views
C++ : Multiple inheritance with polymorphism
(pardon the noob question in advance)
I have 4 classes:
class Person {};
class Student : public Person {};
class Employee : public Person {};
class StudentEmployee : public Student, public Employee ...