Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
178 views

Python, Scipy: Building triplets using large adjacency matrix

I am using an adjacency matrix to represent a network of friends which can be visually interpreted as Mary 0 1 1 1 Joe 1 0 1 1 Bob 1 1 0 ...
3
votes
2answers
250 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 ...
2
votes
4answers
99 views

Optimize adjacency matrix computation

X is a text file that contains 100000 equal size (500 elements) bit vector (i.e. each row is a vector of 500 elements). I am generating an adjacency matrix (100000 X 100000) using the code below, but ...
2
votes
3answers
77 views

Cluster adjacency matrix of different sizes

I have created adjacency matrix for directed graphs of different sizes. I have around 30,000 matrices, each on a separate text file. How can I cluster them, is there any tools available. What is the ...
2
votes
1answer
339 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
142 views

Good way to delete vertices from adjacency matrix

I'm writing a small graph library for an algorithm course I'm attending. I've implemented the basic operations like initializing graph, adding an edge, adding a vertex and so on. Now I should ...
2
votes
2answers
195 views

Representing edge absence in adjacency matrix of weighted graph

I'm trying to implement in C some graph algorithms, using an adjacency matrix as support data structure. I need to implement a weighted graph, with weigths represented by a real number. Given that 0 ...
2
votes
3answers
613 views

Graph representation

Given graph, how could i represent it using adj matrix?. I have read lots of tutorials, post, slides, etc but i cant get my head round it, i just need that little push.
2
votes
1answer
2k views

How to implement an adjacency matrix in java producing hamilton cycles

I am trying to implement an adjacency matrix in java that will produce an output for a Hamiltonian cycle, which can then be solved with different algorithms such as kruskurals, djikstras and the 2opt ...
2
votes
1answer
895 views

Creating an adjacency Matrix from a JUNG Graph

Graph < Integer, Integer> g = new SparseMultigraph<Integer, Integer>(); g.addVertex(1);g.addVertex(2);g.addVertex(3); g.addEdge(0,1,2 ,EdgeType.DIRECTED);g.addEdge(1,2,3 ...
1
vote
1answer
91 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
179 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
155 views

Graph Traversal Problem

My Dijkstra Algorithm works fine to find a path. Now I want to go back to show the way I went. I mark a visited vertex and give it a pointer to the vertex I came from "prev". Unfortunately these ...
1
vote
2answers
340 views

Finding Minimum spanning tree with an adjacency matrix with more than 1 connected component

I have an adjacency matrix built for one of my projects, and I need to be able to construct a minimum spanning tree out of that matrix. From reading around, it looks like Prim's algorithm is best for ...
1
vote
3answers
279 views

Help with traversing through node/ input file read

So I have this assignment where I read in 1 line at a time separated by comma e.g. Atlanta, Philadelphia New York, Philadelphia Philadelphia, Chicago Washington, Florida ..... up to a vast ...
1
vote
1answer
291 views

Partitioning adjacency matrix of bipartite graph

Lets say I have a graph G with its adjacency matrix A. I know that G is bipartite. How can I split the vertices in G into the two sets that always form a bipartite graph? Thanks!
0
votes
0answers
20 views

.NET Report Viewer Cell Empty When Using Adjacent Groups in Matrix

I am having a problem when displaying a .rdl report in .NET Report Viewer in a Windows form. I've designed a report with a matrix and a few adjacent groups in Visual Studio 2008 with the Business ...
0
votes
1answer
63 views

time efficiency in Kruskal's algorithm using adjacency matrix as data structure

This is the psudacode i used for kruskal algorithm.Data structure I have used is an adjacency matrix. I got the order of growth as n2. I wanna know whether it is correct or not. Kruskal’s Pseudo code ...
0
votes
0answers
15 views

Detect GLB and LUB in a set Using a boolean matrix

I want to detect whether GLB and LUB is exist in a boolean matrix or not. i just need an algorithm how to do this. we have a 10x10 matrix that carry 1,0 values some thing like this: (( also we know ...
0
votes
1answer
44 views

Adjacency matrix of a graph in Neo4j

Is it possible to get the adjacency matrix of a graph in Neo4j? Or do I need to build it myself? Thanks!
0
votes
2answers
82 views

How to create an adjacency matrix of mutual friendships from facebook in python

I am doing a project on Social Network Analysis of Facebook Network. I had to get all my friends and who of my friends are friends with each other, mutual frindships inside my network. I did that, I ...
0
votes
0answers
156 views

Issue with Dijkstra's algorithm, convert to array of strings

I am developing Dijkstra's algorithm and I have a matrix with chars. I want to convert this to an array of strings. Can someone help me? static char[,] T = { {'A', 'B', 'C', 'D', 'E', 'F', ...
0
votes
1answer
97 views

What is wrong with my dijkstras algorithm

So I've been working on this for hours and I'm extremely frustrated. I don't understand what I'm doing wrong. I'm using Dijkstra's Algorithm to find the shortest paths between a source vertex, and 4 ...
0
votes
0answers
21 views

Edge matrix and spanning tree

I am currently learning about trees and I have encountered this question. I am presented with a figure I am supposed to find the adjacency matrix, edge matrix and draw the spanning tree. Now the ...
0
votes
0answers
133 views

Adjacency matrix from graph

Is there any tool or program that can take a graph as an input (I mean a set of clickable nodes with their respective weight) and return the adjacency matrix? In java for example I have seen this ...
0
votes
0answers
29 views

dimacs sample graph

How to read or import adjacency matrix from dimacs sample graph like one from this site http://mat.gsia.cmu.edu/COLOR/instances.html#XXDSJ in java Thankyou
0
votes
1answer
199 views

Static allocated adjacency matrix Graph in C

I want to put in a adjacency matrix the following graph: The left figure is a node link representation of an 8 node network. The right one is an adjacency matrix representation of the same network. ...
0
votes
3answers
411 views

Building a sparse matrix in Java w/o using hashtables?

In my project, I'm trying to build an adjacency matrix for a graph, and for space and time considerations we are supposed to use a sparse matrix, which, from my understanding, is most easily done with ...
0
votes
2answers
405 views

C++ Bitset array, accessing values

I've got the task to create a graph's adjacency matrix from a list of adjacent nodes, stored in a file (don't need the weights) into a bitset array in C++. I successfully read the adjacent nodes from ...
0
votes
1answer
156 views

Getting the adjacent elements of a 2D matrix (depth one only)

I have an 800 by 600 image. I want to treat it like a matrix and get the adjacent elements ex. (0,0) (1,0) (2,0) (3,0) (0,1) (1,1) (2,1) (3,1) (0,2) (1,2) (2,2) (3,2) (0,3) (1,3) (2,3) (3,3) ...
0
votes
3answers
203 views

what is the most efficient way to store an adjacency matrix without knowing its size?

I need to store a non directed graph with multiple nodes (unknown to the size.. can be vast) on an adjacency matrix. Would a 2D arrayList be an efficient way to store this? If not, what is a better ...
0
votes
3answers
301 views

How to travese through an adjacency matrix?

Say I have the following adjacency matrix produced A B C D E F G H I A 0 1 0 1 0 0 0 0 0 B 1 0 0 0 0 0 0 0 0 C 0 0 0 1 0 0 0 0 0 D 1 0 1 0 0 0 1 0 0 E 0 0 0 0 0 1 0 0 0 F 0 ...
0
votes
3answers
311 views

adjacency matrix in Java - edge overlapping

I have a very simple question to ask. I am using an adjacency matrix (2D array) in java to create a small graph with nodes and edges. My problem is that when I instruct the program to iterate ...
-3
votes
0answers
18 views

Generate adjacency matrix in C++ [closed]

How to generate a adjacency matrix of an n-vertex random graph with edge probability p and average degree d?