adjacency list is a representation of a graph, a collection of unordered lists, one for each vertex in the graph

learn more… | top users | synonyms

1
vote
1answer
45 views

How to create weighted adjacency list/matrix from edge list?

My problem is very simple: I need to create an adjacency list/matrix from a list of edges. I have an edge list stored in a csv document with column1 = node1 and column2 = node2 and I would like to ...
0
votes
1answer
17 views

Making adjacency list, weird bug?

Edit: Original problem fixed. New problem: While loop doesn't break for or statement: while(m->next != NULL || m->val != n) { cout<<"Looking for main node. ...
0
votes
0answers
46 views

Building an adjacency list graph using link list / vector

This is my first go at building a graph and i've decide to use a LL to connect my vectors (or nodes or elements, whatever they're called) and each one of my nodes has a vector that holds pointers to ...
1
vote
1answer
50 views

Trying to make adjacency list using link list and vectors

I'm trying to figure out how to make an adjacency list, but am having trouble understanding what I need to do. I have this Java code: public class Graph { private final int V; private ...
-2
votes
2answers
125 views

BFS and DFS on Adjacency List [closed]

So I know the basics of Breadth First Search and Depth First Search on graphs but I can't seem to figure out how to perform both of them on a adjacency list. Each search starts at 0. 0 -> 5 -> 2 -> 1 ...
1
vote
1answer
43 views

Finding the indices of all edges within k steps from a chosen line in an adjacency matrix in MATLAB

I have a function where I can find all nodes k number of steps from any initial set of nodes in a sparse adjacency matrix. Normally this intial set is the to-from node for a single branch. I want a ...
0
votes
2answers
69 views

finding longest path in an adjacency list

I have an adjacency list I have created for a given graph with nodes and weighted edges. I am trying to figure out what the best way would be to find the longest path within the graph. I have a ...
1
vote
3answers
55 views

Find all nodes in an adjacency list model with oracle connect by

Given the following model: create table child_parent ( child number(3), parent number(3) ); Given the following data: insert into child_parent values(2,1); insert into child_parent ...
0
votes
0answers
20 views

How do I tranverse an adjacency list model hierarchy with different types of children alphabetically?

I am producing a lexicon. There are two tables: lexicon (words with associated parent from categories table) categories (adjacency list model table) My query might produce something like this ...
1
vote
1answer
79 views

adjacency linked list C++ display

I have created an adjacency linked list to show flights between cities. The program reads from 2 files, one contains names of cities and the other one contains source and destination of different ...
0
votes
2answers
30 views

Storing a tree in a SQL table

I have a table like the following, Create Table Entries ( EntryID int, ParentEntryID int, // -1 if root node EntryText nvarchar(100) ) I need to write a stored procedure which takes a ...
0
votes
1answer
83 views

Convert ~500mb csv file to adjacency list

I data scraped from Kickstarter.com. The format of data is in CSV with headers "backer" and "backed_projects". The "backer" column stores all the profile urls of backers and the "backed_projects" ...
0
votes
1answer
45 views

Getting rid of non-unique entries in an adjacency list

I'm currently working on a project for my upper-level C++ class, and we are building a program that makes a maze, then solves it, the makes a PNG of said maze. Pretty cool stuff. Anyways, I'm current ...
0
votes
1answer
104 views

Graph from adjacency list

I have a adjacency list and I want to visualize them and do processing on it. Is there a package to do it efficiently. I see there are lot of graph packages but confused among them. Can someone help ...
0
votes
0answers
22 views

Retrieve Single path using Adjacency Model in MySQL

There are a few different questions about this, with most solutions pointing toward using a Nested Model structure instead of Adjacency Model; but I'm still going to ask anyway. Is there any way to ...
0
votes
1answer
77 views

How to construct BFS-suitable data structure for adjacency list?

Interview question on building and searching an adjacency tree, but I've never worked with them before, so I'm not sure where to begin. I have a file containing data like: 2 13556 225 235 225 2212 ...
0
votes
2answers
145 views

Get contagion chain from adjacency matrix, r, igraph

Q.I have a erdos.reyni graph. I infect a vertex and want to see what sequence of vertices the disease would follow? igraph has helful functions like get.adjacency(), neighbors(). Details. This is the ...
0
votes
1answer
62 views

Sorting non-nested array of data from adjacency model

I have an array of data fetched from a database table that uses the adjacency model to build a heirarchy of topics. Each record contains the following fields: 'id' - a unique AI id. 'name' - a ...
1
vote
1answer
236 views

How to build adjacency list from adjacency matrix?

I have successfully built an adjacency matrix for a input file with the first line of the input as the total number of vertices, and the following lines are edges in arbitrary order as pairs of ...
0
votes
2answers
75 views

Traverse MultiMap to Find Path from a Given Value to a Given Key

Details: I have a multimap implementation that represents the adjacency list for the subset of a graph. I need to find a path through this subset of the graph, which is actually all the possible ...
0
votes
1answer
460 views

C++ Trouble with Understanding BFS to find Shortest Path

I have a simple graph and my assignment is to find the shortest path between two nodes. I've done my best to read through the BFS pseudocode and examples but it's just not clicking. My nodes are ...
0
votes
1answer
66 views

Recursive SQL PostgreSQL Empty Result Set

The categories table: =# \d List of relations Schema | Name | Type | Owner --------+-------------+-------+------- public | categories | table | pgsql public | products | ...
0
votes
1answer
1k views

Java implementation of adjacency list

I have a n*m matrix with integer value at each node and its an undirected graph. I want to build an adjacency list for it. How do I do that? Any help is much appreciated.
0
votes
1answer
86 views

Data Mapping an Adjacency List Model with AutoMapper [duplicate]

So have have an model object TreeNode: Public Class TreeNode{ Public int NodeId {get;set;} Public String Name {get;set;} Public int ParentId {get;set;} Public TreeNode Parent {get;set;} ...
0
votes
0answers
179 views

Adjacency matrix and adjacency list in java for n*m matrix

I have a 8*5 2D array. I want t build an adjacency list and a adjacency matrix for it. How do I do it? I tried a few ways but from what I figured adjacency matrix is n*n matrix but the array I have ...
0
votes
1answer
85 views

SQL query to find final overridden id in adjacency list / closure table

I have an adjacency list table called attribute (which also has a closure table called attribute_closure mapped for ease of recursion). Each entry in the attribute table is one of 4 hierarchical ...
-2
votes
1answer
369 views

Adjacency list in Java [closed]

I have a 8*5 matrix. I need to start at position (0,1) and end at (7,3) implementing BFS and DFS. While I have an idea about BFS and DFS implementation, I'm not sure how to build an adjacency list. ...
3
votes
2answers
113 views

Query furthest children in Adjacency List

So I have an SQL query to retrieve all the children of a given node in an adjacency list. WITH RECURSIVE q AS ( SELECT id, name FROM categories h WHERE ...
0
votes
0answers
79 views

formation of adjacency list of graph from .wkt file

i am trying to implement an algorithm on real graph. i am using ROAD NETWORK. i have converted the .osm file from openstreetmap in .wkt format. now i am trying to fined out adjacency list of graph ...
1
vote
1answer
58 views

Defining a xml for representing adjacency list of graphs?

I am working on a python graph library and I am using adjacency list. I am thinking about using xml to represent the adjacency list so it will be easier for me to store to or read from graphs. For a ...
1
vote
1answer
154 views

UVa Online Judge Runtime Error C++ (341 - Non-Stop Travel)

I have been trying to do the 341 Non-Stop Travel Problem on the UVa Judge Online, but when I submit my code, the judge says that there is a Runtime Error(RE) and I can't detect it. I solved the ...
1
vote
2answers
128 views

Tree from adjacency map

I'm trying to make a function that builds a tree from an adjacency list of the form {node [children]}. (def adjacency {nil [:a] :a [:b :c] :b [:d :e] :c [:f]}) which should result in ...
0
votes
1answer
64 views

Graph implementation knowing edges ahead of time

I'm looking for an efficent way to implement a weighted undirected graph knowing only the number of edges ahead of time. sample input: N (number of edges) A B x (x is the distance from A to B) . ...
0
votes
0answers
48 views

Algorithm for Voronoi Connected Corners/Edges List

I've been working with a JavaScript implementation of a Voronoi Library (specifically Robert Hill's -- https://github.com/gorhill/Javascript-Voronoi ). It returns a pretty standard structure with an ...
-1
votes
1answer
255 views

BFS using Map<Integer, ArrayList<Integer>>

I'm trying to create a undirected graph, so i used the code below to create a graph after execution the output i get is : {1=[2, 5, 10, 18], 2=[1, 3], 3=[2, 4], 4=[3, 5], 5=[1, 4, 6], 6=[5, 7], ...
1
vote
1answer
29 views

How to find the latest item added to an adjacany list regardless of depth?

I have some hierarchical categories in SQL Server, defined as such: CREATE TABLE [dbo].[CategoryDesc] ( [CategoryId] [int] IDENTITY(1,1) NOT NULL, [Name] [nvarchar](255) NOT NULL ) CREATE ...
0
votes
0answers
733 views

Graph Adjacency List Implementation

I am trying to represent a Graph in Adjacency List using C#, like the code bellow. But I would like to know where I can find a better implementation in C#. Like this website for Java: ...
3
votes
2answers
1k views

Adjacency List and Adjacency Matrix in Python

Hello I understand the concepts of adjacency list and matrix but I am confused as to how to implement them in Python: An algorithm to achieve the following two examples achieve but without knowing ...
1
vote
2answers
180 views

Django models hierarchy to adjacency list or nested set - optimal way (with filtering)

my django application stores some hierarchical data in the DB, as following: class Foo(Model): # ... fields parent = ForeignKey('self', null = True) Now, in order to display that tree ...
1
vote
0answers
149 views

How to test for adjacency in a mine field game

I am very new to Java, I have only been studying it for a couple of weeks, and this project has me puzzled. The instructions were to create a minefield game that generates a random start point, a ...
1
vote
2answers
76 views

mysql query join: Pages in Sections OR Subsections, is there a better alternative to GROUP BY to elim dupes?

UPDATE: I am using the sql query shown in my question in production, but you are welcome to read the entire thread if you want to see an alternate approach to this, using sql with a UNION I've ...
-3
votes
2answers
759 views

Best way to implement a graph in C++? [closed]

I'm looking to implement a constant, unordered, unweighted, sparse graph (ie. edges do not move). However, I will be doing lots of vertex swap operations, whereby the ordering of the vertices change. ...
1
vote
2answers
100 views

checking value in n-depth tree?

I have two entities, post and category which is a 1:n relationship. I have a reference table with two columns, post_id,category_id The categories table has an id column, a status column and a ...
0
votes
3answers
60 views

Extra edge in my list?

I'm writing code to create a matrix out of a list of edges. However, when I run said code, I get a "phantom edge" that is not in the input data, which goes on to screw up the rest of my program. The ...
0
votes
0answers
81 views

Implementation of a distance matrix of a binary tree that is given in the adjacency-list representation

Given this problem I need an O(n²) implementation of this algorithm: "Let v be an arbitrary leaf in a binary tree T, and w be the only vertex connected to v. If we remove v, we are left with a ...
4
votes
1answer
106 views

How to set user permissions for a tree (adjacency-list) structure database?

We are using mysql. Suppose we have a Adjacency List model table. (I know it's not normalized.) For example, personnel table with fields like: Personnel |employee|boss |salary| ...
2
votes
0answers
174 views

Mysql Adjancency: get all parents of the leaf

I have a table in the category where I use this data structure model. Also use another table that shows me the path of the branch of a category: **t_category** id | name | parent ------------------ 1 ...
2
votes
2answers
203 views

Random adjacency list generator

I am currently working on developing an application to find the maximum clique in a graph for my final year project. I have most the project complete and am just starting to test the application. ...
1
vote
2answers
210 views

Finding the root node of a descendant in an Adjacency List

In an Adjacency List table, given the id of a node, how can I find it's associated root node? Note: The table contains multiple trees so I cannot simply search for the null parentId. Further ...
0
votes
3answers
649 views

How to create adjacency list once a graph has been plotted?

I have an Edge class which stores: source (vertex), target (vertex) and weight. I have a Vertex class which stores: name, x-coordinates, y-coordinates, and Edge[] adjacentList. I also have a Graph ...

1 2 3