Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
324 views

Problem with C# List when compiled in mono (homework-related)

I'll admit this is my homework. The task statement said I have to write a program that finds a topological order of a graph which would be inputted by standard input. Then I need to submit it to be ...
9
votes
5answers
4k views

What is better adjacency lists or adjacency matrix for graph problems in c++?

What is better adjacency lists or adjacency matrix for graph problems in c++? And what are the advantages and disadvantages of each? EDIT:can anyone provide a link with a clean code for say Breadth ...
7
votes
3answers
877 views

How do you convert a parent-child (adjacency) table to a nested set using PHP and MySQL?

I've spent the last few hours trying to find the solution to this question online. I've found plenty of examples on how to convert from nested set to adjacency... but few that go the other way ...
7
votes
1answer
1k views

How to generate Markov Chain in C#

I want to create this Markov Chain in C#. I need to know if there is any other structure other than adjacency list which can work better in this situation. Also how can I use the existing .Net ...
4
votes
4answers
2k views

What is the most efficient way to determine if a directed graph is singly connected?

I am working on an assignment where one of the problems asks to derive an algorithm to check if a directed graph G=(V,E) is singly connected (there is at most one simple path from u to v for all ...
3
votes
2answers
99 views

What does Θ(deg(u)) mean?

I have never heard this before, or maybe I have heard it in other terms? The context is that for adjacency lists, the time to list all vertices adjacent to u is Θ(deg(u)). Similarly, the time to ...
3
votes
1answer
68 views

How many “entities” are beneath this hierarchical structure. Nested Set/Adjacency (How many POI are inside of England)

Development language and DB: PHP/MySQL I have a table geo_places with something like 8 million geographical locations. These places are all hierarchical, and I use parent_id (adjacency), ...
3
votes
1answer
191 views

Edge length in an adjacency list

Where would be the best place to put the edge length in an adjacency list implementation? I using this site as reference. What I am thinking is to put it in the edge node so to find the length from ...
3
votes
2answers
525 views

Deeply nested subqueries for traversing trees in MySQL

I have a table in my database where I store a tree structure using the hybrid Nested Set (MPTT) model (the one which has lft and rght values) and the Adjacency List model (storing parent_id on each ...
3
votes
2answers
796 views

adjacency list creation , out of Memory error

I am trying to create an adjacency list to store a graph.The implementation works fine while storing 100,000 records. However,when I tried to store around 1million records I ran into OutofMemory ...
3
votes
2answers
235 views

Graph representation benchmarking

Currently am developing a program that solves (if possible) any given labyrinth of dimensions from 3X4 to 26x30. I represent the graph using both adj matrix (sparse) and adj list. I would like to know ...
3
votes
1answer
396 views

How do I aggregate results from an Adjacency list using PHP's SPL

I've tried using nested sets, and they become very difficult to maintain when dealing with multiple trees and lots of other complications.. I'd like to give PHP's SPL library a stab at this (btw, we ...
3
votes
1answer
727 views

Adjacency List Tree Using Recursive WITH (Postgres 8.4) instead of Nested Set

I'm looking for a Django tree library and doing my best to avoid Nested Sets (they're a nightmare to maintain). The cons of the adjacency list model have always been an inability to fetch descendants ...
3
votes
1answer
3k views

adjacency list of a directed weighted graph

I am using adjacency lists to represent a directed weighted graph and based on the example code provided by this SO question, I have created the following: import java.util.HashMap; import ...
3
votes
4answers
3k views

Flatten Adjacency List Hierarchy To A List Of All Paths

I have a Table that stores Hierarchical information using the Adjacency List model. (uses a self referential key - example below. This Table may look familiar): category_id name ...
2
votes
1answer
49 views

How to transform a MSSQL CTE query to MySQL?

in my MySQL schema, I have the category(id, parentid, name) table In the MSSQL, I have that CTE query (to build a category tree from the bottom up for a supplied category ID: with CTE (id, pid, ...
2
votes
2answers
108 views

Managing hierarchies in SQL: MPTT/nested sets vs adjacency lists vs storing paths

For a while now I've been wrestling with how best to handle hierarchies in SQL. Frustrated by the limitations of adjacency lists and the complexity of MPTT/nested sets, I began thinking about simply ...
2
votes
2answers
303 views

PHP / MySQL Adjacency List Question

I have the following issue : imaging an adjacency list, that's been walked over with a recursion coming out of a sql like this SELECT * FROM pages as ps ORDER BY COALESCE(child_of,page_id), ...
2
votes
1answer
332 views

graphs representation : adjacency list vs matrix

I'm preparing for a coding interview, and was refreshing my mind on graphs. I was wondering the following : in all places I've seen, it is assumed that adjacency lists are more memory efficient than ...
2
votes
1answer
466 views

Codeigniter 2 + Datamapper ORM: Adjacency Lists, how to set model relation for it?

Q: How to set models for Adjacency Lists, when using Datamapper ORM. Anyone experienced ? For example, Table Category ( id, name, has_parent_category_id ). Thanks for looking! Example table, Tbl ...
2
votes
4answers
523 views

STL vector vs list: Most efficient for graph adjacency lists?

Lists consume most of their time in allocating memory when pushing_back. On the other hand, vectors have to copy their elements when a resize is needed. Which container is, therefore, the most ...
2
votes
2answers
361 views

Which Hierarchical model should I use? Adjacency, Nested, or Enumerated?

I have a table which contains a location of all geographical locations in the world and their relationships. Here is a example that shows the hierarchy. You will see that the data is actually stored ...
2
votes
1answer
443 views

Path Enumeration mySQL Querying to create a bread crumb

I would like to create a bread crumb from a path enumerated column. Here is an example of the dataset that I have. ...
2
votes
1answer
1k views

Adjacency list vs. nested set model

I have been looking into Adjacency List and Nested Set Model to find the optimal tree solution. Up until now I thought one of the main advantages of Nested Set Model was that I could use one SQL ...
2
votes
2answers
2k views

create graph using adjacency list

#include<iostream> using namespace std; class TCSGraph{ public: void addVertex(int vertex); void display(); TCSGraph(){ head = NULL; } ...
2
votes
2answers
1k views

Most efficient way of creating tree from adjacency list

I have an adjacency list of objects (rows loaded from SQL database with the key and it's parent key) that I need to use to build an unordered tree. It's guaranteed to not have cycles. This is taking ...
2
votes
2answers
205 views

Is it considered bad design to combine the adjancey list model and the nested sets model?

I'm working on building a tree structure in MySQL and have been experimenting with different ways of representing the data. However, no matter how I slice it, there are shortcomings. The nested ...
2
votes
2answers
218 views

How to pull grandchildren from database

I want to pull out menu items from MySQL. Main menu id=1, parentid=0 -Contact us id=2, parentid=1 -Music id=3, parentid=1 --Rock id=8, parentid=3 ...
2
votes
1answer
948 views

Boost adjacency_list help needed

I'm trying to use Boost's adjacency_list type and I'm having trouble understanding the documentation. Say I define a class named State and I instantiate one instance for each state in the USA: class ...
1
vote
1answer
58 views

How is BFS on an adjacency matrix list O(m+n)?

I'm trying to figure out how a BFS is O(m+n), where n is the number of vertices and m is the number of edges. The algorithm is: public void bfs() { //BFS uses Queue data structure Queue ...
1
vote
1answer
50 views

SQL: Persisting a root_id in a three-level tree?

I have a simple three-level tree, currently stored as an adjacency list: CREATE TABLE categories ( id int, name text, parent_id int); It's read-only, and I often need to know the root ...
1
vote
1answer
57 views

adjacency_list with VertexList diffrent from vecS

IHello, I have two structs containing some fields: struct MyNodeData, and struct MyEdgeData. When I create a graph with VertexList as vecS, there is no problem to access the descriptor of vertices ...
1
vote
2answers
81 views

Count adjacent dates in array

I have an array of about 1000 records, each record is an object with these properties: - Result + Number: Integer (can repeat, not an ID) + Date: DateTime I want to count and get the most ...
1
vote
4answers
109 views

adjacency list in coldfusion

This image demonstrates what I'm trying to achieve. On the left is the table data, on the right the table I'm trying to create. the table uses the parentID to reference another item within the same ...
1
vote
1answer
166 views

transform SQL adjacency list to R adjacency matrix

I have a MySQL table pedigree that stores all my interconnecting parentage data as 2 adjacency lists: Pedigree table org_id INT UNSIGNED NOT NULL PRIMARY KEY, dam_id INT UNSIGNED, sire_id INT ...
1
vote
1answer
66 views

Adjacency list to model relationships between relatively-positioned shapes?

I'm trying to model a composite object that consists of one or more shapes. For simplicity, I'll assume the shapes are all rectangles. A composite might look like this (forgive my poor ASCII art): ...
1
vote
1answer
132 views

Can I append twice the same object to an InstrumentedList in SQLAlchemy?

I have a pretty simple N:M relationship in SqlAlchemy 0.6.6. I have a class "attractLoop" that can contain a bunch of Media (Images or Videos). I need to have a list in which the same Media (let's say ...
1
vote
0answers
114 views

How do you dynamically adjust the recursion depth for eager loading in the SQLAlchemy ORM?

I have a two-table hierarchical setup where table A references table B, which then references back to a different record in table A, and so on... but only up to a given recursion depth. I have this ...
1
vote
2answers
176 views

Copy in adjacency model

I need to create a sql stored procedure (Sql Server 2008 - T-SQL) which copies a node in an adjacency model. Table can be seen as having two columns, Id and ParentId (FK to Id). Copying means that ...
1
vote
2answers
534 views

PHP/MySQL: Retrieve a single path in the Adjacency List model

Is there any effective way to, without limiting the depth, retrieve a single path in a Adjacency List model based on the node's ID? Like if I've got an ID for a node named "Banana" I could get the ...
1
vote
3answers
148 views

SELECT an arbitrarily deep tree that is represented by the adjacency list model in mysql?

In mysql, I have a tree that is represented using the adjacency list model. MYTREE id parent_id title I am wondering: Given the id of a node, is there any way to SELECT the entire tree ...
1
vote
3answers
559 views

How do I display non-normalized data in a hierarchical structure?

My issue is that I want to display data in a hierarchal structure as so: Democrat County Clerk Candidate 1 Candidate 2 Magistrate Candidate 1 Candidate 2 Candidate 3 But I'm retrieving the ...
1
vote
1answer
259 views

A RecursiveParentChildIterator — like the RecursiveDirectoryIterator

There are tons of examples of using the RecursiveIterator to flatten a tree structure.. but what about using it to explode a tree structure? Is there an elegant way to use this, or some other SPL ...
1
vote
5answers
1k views

Adjacency tree from single table

I've read a lot of people discussing nested lists, but I was wondering how to iterate through an adjacancy list/tree in PHP. I have a table with: id, title, parent_id And I've selected all records ...
0
votes
3answers
47 views

Generating clusters from adjacency matrix / edge list in R

I am trying to find potential clusters or groups of nodes (forum messages, in this case). In the current data, each node (message) has been tentatively grouped together with n other messages, and ...
0
votes
1answer
25 views

Convert yahoo geoplanet data into nested-set

My client wants to use yahoo's geoplanet data for his program. But the problem is that the data are not nested-set but adjacency list. I really tried to found a solution but I can't. Has anyone found ...
0
votes
0answers
78 views

How can an adjacent hierarchy from MySQL be displayed as an HTML table using PHP?

In other words, I can get my hierarchy from the database as 'columns', but I need them transposed into 'rows' in order for them to appear in an HTML table. db structure There are 3 columns in the ...
0
votes
0answers
42 views

adjacency list into nested array PHP [closed]

There is the code <?php global $table; $table = array( 1=>0, 2=>1, 3=>2, 4=>3, 5=>4, 6=>5 ); function get_ch($id){ global $table; $ch = ...
0
votes
1answer
80 views

Undirected Graph add/remove Vertex; removeEdge methods

Can anyone help with the following three methods? addVertex: adds a single vertex removeEdge: removes an edge between two vertices. removeVertex: removes a single vertex Using an adjacency list ...
0
votes
2answers
98 views

Shortest path in an adjacency list in non-weighted graph

First, I would like to make sure I got the structure correct. As far as I know, an adjacency list representing a graph looks like this: AdjList is an ArrayList, where each element is an object. ...

1 2