active questions tagged graph-theory - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T15:34:54Zhttp://stackoverflow.com/feeds/tag/graph-theoryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1853111/algorithms-to-eliminate-or-display-outliers-in-a-dataset1Algorithms to eliminate or display outliers in a dataset.Steve2009-12-05T19:06:10Z2009-12-05T23:10:26Z
<p>I am trying to visualize a large multi-dimensional dataset. Each dimension has a different range. Values in one column may range between 0-100 while values in another could range from a few hundred thousand to a few hundred million. Therefore it is really hard to show a graph with a reasonable scale. I would like to visualize them using a parallel coordinate chart or series of point charts.</p>
<p>I have come up with three different approaches; any outlier outside of the standard deviation will be removed, any outlier outside of the standard deviation will show up at the edge of the standard deviation, or I will adjust the scale of each dimension so that all are scaled to be seen at once.</p>
<p>Does anyone have any recommendations regarding which method would retain the integrity of the data? Also, does anyone have good examples of outlier removal algorithms?</p>
http://stackoverflow.com/questions/1805619/graph-theory-question-java-which-algorithm-to-achieve-the-following1Graph theory question, Java. Which algorithm to achieve the following.misterfixit2009-11-26T21:02:06Z2009-11-27T09:50:16Z
<p>I have a graph, with X nodes and Y edges. Weighted edges. The point is to start at one node, and stop at another. Now here comes the problem; </p>
<p>Visualize the problem. The edges are roads, and the edge weights are the max weight limits for vehicles driving on the roads. We would like to drive the biggest truck possible from A to B. So the maximum allowed weight for a truck taking a given path is the smallest weight of all of the edges in that path. I want the largest maximum allowed weight for all paths from A to B. </p>
<p>Can I use some sort of Dijkstra's algorithm for this problem? I'm not sure how to express this problem in the form of an algorithm that I can implement. Any help is much appreciated. </p>
<p><strong>Update:</strong>
I tested out somethings that didn't work for me. A node would have to have one max truck for every incoming edge. </p>
http://stackoverflow.com/questions/1807388/graph-theory-find-the-jordan-center2Graph Theory: Find the Jordan center?Rosarch2009-11-27T08:18:56Z2009-11-27T09:16:43Z
<p>I'm trying to find the set of vertices that minimizes their distance to other vertices on a weighted graph. Based on a cursory wikipedia search, I think that this is called the <a href="http://en.wikipedia.org/wiki/Graph_center" rel="nofollow">Jordan Center</a>. What are some good algorithms for finding it?</p>
<p>Right now, my plan is to get a list of the weight for each branch emanating from a given vertex. The vertices whose weights have the smallest relative difference will be the central ones. Any other ideas?</p>
<p>I'm using Java, but helpful answers don't necessarily need to be Java specific.</p>
http://stackoverflow.com/questions/261573/best-algorithm-for-detecting-cycles-in-a-directed-graph9Best algorithm for detecting cycles in a directed graphPeauters2008-11-04T11:26:38Z2009-11-22T23:18:38Z
<p>What is the most effiecent alogrithm for detecting all cycles within a directed graph?</p>
<p>or</p>
<p>I have a directed graph representing a schedule of jobs that need to be exectuted, a job being a node and a dependency being an edge. I need to detect the error case of a cycle within this graph leading to cyclic dependencies.</p>
http://stackoverflow.com/questions/1607124/algorithms-to-identify-all-the-cycle-bases-in-a-undirected-graph1Algorithms to Identify All the Cycle Bases in a UnDirected GraphNgu Soon Hui2009-10-22T13:17:56Z2009-11-20T18:02:11Z
<p>I have an undirected graph with Vertex <code>V</code> and Edge <code>E</code>. I am looking for an algorithm to identify all the cycle bases in that graph. </p>
<p>I think <a href="http://en.wikipedia.org/wiki/Tarjan%27s%5Fstrongly%5Fconnected%5Fcomponents%5Falgorithm" rel="nofollow">Tarjans algorithm</a> is a good start. But <a href="http://stackoverflow.com/questions/546655/finding-all-cycles-in-graph">the reference</a> I have is about finding all of the <strong><em>cycles</em></strong>, not <strong><em>cycle base</em></strong> ( which, <a href="http://docs.google.com/gview?a=v&q=cache%3AhiQh1XxAbocJ%3Awww.me.utexas.edu/~bard/IP/Handouts/cycles.pdf+cycle+base+graph&hl=en&gl=my&pid=bl&srcid=ADGEEShnOzFE1c62iroIJ%5FAjB4ujn0sw5CaNS-gf5OSjB46gJyLMWPXLTPr0-p03BqLPxPAhsRWe%5FX0o%5FlolbTumpW7gsewt9xHsL5PRdY0q8tpfnGKQEhRTDWy53mXF-0OAmB6EAdIy&sig=AFQjCNFaPRcISCC3wQa7m%5Frsj5R%5FUj2zoA" rel="nofollow">by definition</a> is the cycle that cannot be constructed by union of other cycles).</p>
<p>For example, take a look at the below graph:</p>
<p><img src="http://lh5.ggpht.com/%5FSDci0Pf3tzU/SuBhd07xbWI/AAAAAAAAFMs/9OlMhN8uzzQ/s640/mst.jpg" alt="alt text"></p>
<p>The idea is that by providing the graph (16 vertexes and 22 edges), I should be able to find out all the cycle bases ( in this case, it's R1- R7), along with the corresponding edges.</p>
<p>So, an algorithm would be helpful. If there is an existing implementation (preferably in C#), it's even better!</p>
http://stackoverflow.com/questions/1768013/implementation-detail-for-graph-analysis-algorithms0Implementation Detail for Graph Analysis Algorithmsaramadia2009-11-20T02:50:33Z2009-11-20T03:18:21Z
<p>Let's say I have a graph with "heavy" nodes, that is each node is an object that is already carrying a lot of data. I want to do a graph transformation that requires me to calculate a special property for each node. This property only needs to be remembered temporarily to apply the transformation. How can I store this property efficiently?</p>
<p>Adding a special_property field to each node seems like a waste as I only need to remember it for a short time. Another possibility is to create a "shadow" graph, which is a graph that has the exact same connections as the original one and only storing the special_property though this seems unwieldy.</p>
<p>What is a generally acceptable way to tackle this problem?</p>
http://stackoverflow.com/questions/847465/graphs-find-a-sink-in-less-than-ov-or-show-it-cant-be-done1Graphs: find a sink in less than O(|V|) - or show it can't be doneflybywire2009-05-11T10:07:04Z2009-11-18T14:31:25Z
<p>I have a graph with n nodes as an adjacency matrix.</p>
<p>Is it possible to detect a sink in less than O(n) time?</p>
<p>If yes, how? If no, can you prove it?</p>
<p>Sink: a node that has incoming edges from all other nodes and no outgoing edges.</p>
http://stackoverflow.com/questions/1752623/partitioning-of-a-directed-graph2Partitioning of a directed graphAndrew Walker2009-11-17T23:30:31Z2009-11-18T00:59:39Z
<p>I'm trying to partition a network into one or more parts based on a set of critical vertices. I've got code that I believe solves my problem (at least, it has for the cases I'm interested in), but for the sake of ensuring correctness in general, I'm looking for the name of what I'm doing from graph theory, or even a reference on an equivalent algorithm or process.</p>
<p>The input network is a directed graph with a single source and sink vertex. The resultant partitions must have the same property as the original (directed graphs, single source vertex, single sink vertex), with the additional requirement that each partition should only have two vertices that are in the critical set, and they must be the initial and terminal vertices. </p>
<p><strong>Edit</strong></p>
<p>If the source and sink are the same vertex, the resultant sub-graph would contain a cycle. Existing code is available to detect and remove such cycles. .</p>
<p><strong>End Edit</strong></p>
<p>In this case a diagram is worth 1000 words, I've drawn up a simple graph, the colored vertices represent the critical vertices, and the dotted lines are the partitions of the graph. </p>
<p><img src="http://i50.tinypic.com/1254bkg.jpg" alt="alt text"></p>
<p>In this case, the intention is to find any possible partitions between 1-1, 1-3, 1-7, 3-1, 3-3, 3-7, 7-1, 7-3 or 7-7. Only the partitions 1-3, 3-3 and 3-7 actually exist (see image below). Additionally, because the 3-3 partition is invalid, the graph has been relabeled to remove the inconsistancy.</p>
<p><img src="http://i49.tinypic.com/2qdsf42.png" alt="alt text"></p>
<p>If it helps, my python-eque psuedocode works by performing a series of forward and backward graph traversals to identify all of the possible partitions.</p>
<pre><code>def graphTraversal(graph,srcid,endids):
'''
Given a graph, start a traversal from srcid, stopping search
along a branch any time a vertex is in endids.
Return the visited subgraph
'''
closed = set()
open = set([srcid])
while len(open) != 0:
i = open.pop()
for j in graph.succ(i):
if (i,j) not in closed:
if j not in endids:
open.add(j)
closed.add( (i,j) )
return = graphFromList(closed)
def findAllValidPartitions(graph,srcids):
res = []
for n in srcids:
g2 = graphTraversal(graph,n,t)
g2rev = reverseEdgesInGraph(g2)
for s in srcids:
g3 = graphTraversal(g2rev ,s,t)
g3rev = reverseEdgesInGraph(g3)
g3rev = removeCycles(g3rev,s)
if len(g3rev .E) > 0:
res.append(g3rev)
return res
</code></pre>
http://stackoverflow.com/questions/1548713/how-can-i-learn-higher-level-programming-related-math-without-much-formal-trainin8How can I learn higher-level programming-related math without much formal training?levand2009-10-10T18:35:35Z2009-11-16T22:24:01Z
<p>I haven't taken any math classes above basic college calculus. However, in the course of my programming work, I've picked up a lot of math and comp sci from blogs and reading, and I genuinely believe I have a decent mathematical mind. I enjoy and have success doing Project Euler, for example.</p>
<p>I want to dive in and really start learning some cool math, particularly discrete mathematics, set theory, graph theory, number theory, combinatorics, category theory, lambda calculus, etc.
My impression so far is that I'm well equipped to take these on at a conceptual level, but I'm having a really hard time with the mathematical language and symbols. I just don't "speak the language" and though I'm trying to learn it, I'm the going is extremely slow. It can take me hours to work through even one formula or terminology heavy paragraph. And yeah, I can look up terms and definitions, but it's a terribly onerous process that very much obscures the theoretical simplicity of what I'm trying to learn.</p>
<p>I'm really afraid I'm going to have to back up to where I left off, get a mid-level math textbook, and invest some serious time in exercises to train myself in that way of thought. This sounds amazingly boring, though, so I wondered if anyone else has any ideas or experience with this.</p>
http://stackoverflow.com/questions/1736094/longest-circle-in-graphs2Longest circle in graphsMarco2009-11-15T00:20:09Z2009-11-16T18:02:31Z
<p>Hi folks,</p>
<p>I want to solve the following problem:</p>
<p>I have a DAG which contains cities and jobs between them that needs to be done. The jobs are for trucks which can load a definied limit. The more the truck is loaded the better is the tour. Some jobs are for loading something in and some are for loading defined things out. You can always drive from city a to b even if there is no job to be done between them.
The last restriction is that I always need to start in city a and return to a because there is the home of the trucks :)</p>
<p>I first thought of Dijkstra's shortest path algorithm. I could easly turn that into longest path calculation. My problem in mind is now that all these algorithms are for calculating a shortest or longest path from vertex a to b, but I need it from a returning to a - in a circle.</p>
<p>Has some one some kicks for my mind?</p>
<p>Thanks for your feedback!</p>
<p>Marco</p>
http://stackoverflow.com/questions/1701221/are-there-faster-algorithms-than-dijkstra3Are there faster algorithms than Dijkstra?Dave2009-11-09T14:16:32Z2009-11-09T14:52:33Z
<p>Given a directed, connected graph with only positive edge weights, are there faster algorithms for finding the shortest path between two vertices, than Dijkstra using a fibonacci heap?</p>
<p>Wikipedia says, that Dijkstra is in O(|E| + |V| * log(|V|)) (using a fibonacci heap).</p>
<p>I'm not looking for optimizations that, for example, half the execution time, but rather algorithms that are in a different time complexity (like going from O(n * log n) to O(n)).</p>
<p>Further, I would like to know your opinion on the following approach:</p>
<ol>
<li>Determine the GCD of all edge weights.</li>
<li>Transform the graph into a graph with uniform edge weights.</li>
<li>Use BFS to find the shortest path between two given vertices.</li>
</ol>
<p><em>Example for point 2:</em><br/>
Imagine the GCD to be 1. Then I would transform the edge<br/>
A--->B (edge weight 3)<br/>
into<br/>
A->A'->A''->B (3 times edge weight 1)<br/>
This transformation costs constant time and would have to be done once for every edge. So I expect this algorithm to be in O(|E|) (transformation) + O(|E| + |V|) (BFS) = O(2 * |E| + |V|) = O(|E| + |V|)</p>
<p>Thanks for taking the time to read my question and I hope not having waisted your time^^. Have a nice day.</p>
http://stackoverflow.com/questions/1696220/pac-man-representation-with-finite-state-automaton1Pac-Man representation with Finite State Automatonunknown (yahoo)2009-11-08T12:17:29Z2009-11-08T15:20:29Z
<p>Hi there,<br>
Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is to eat all the berries in the maze. The commands we have to consider for the control are the following:<br>
GOAHEAD, LEFT, RIGHT, CHECKBERRY(that checks if there is a berry in FRONT of pac man), EAT and OFF-MAZE.<br>
We need maximum 10 stages... And keep in mind we can't have more than one gaps in a row.
Thank you</p>
<p><strong>EDIT:</strong>
<img src="http://img338.imageshack.us/img338/2479/graphp.jpg" alt="alt text"> </p>
<p>ok then. I created the graph but i can't find a way to overpass gaps. For example: On the maze after a certain row of berries all of a sudden there is a gap in front and the next berry is right down the gap. So I am not sure how my graph will look like as even if I turn left or right the checkberry command won't return TRUE value. So there has to be a way for the pac man to move to the gap square without eating but how will it decide whether to move to the one in front or to others?</p>
http://stackoverflow.com/questions/57471/c-graph-traversal-tracking-path-between-any-two-nodes1C# graph traversal - tracking path between any two nodesmarkd2008-09-11T19:55:53Z2009-11-08T12:56:09Z
<p>Looking for a good approach to keep track of a Breadth-First traversal between two nodes, without knowing anything about the graph. Versus Depth-First (where you can throw away the path if it doesn't pan out) you may have quite a few "open" possibilities during the traversal.</p>
http://stackoverflow.com/questions/1485250/whats-the-name-for-directed-trees-with-edges-pointing-towards-the-root0What's the name for directed trees with edges pointing towards the root?outis2009-09-28T03:19:29Z2009-11-07T12:54:05Z
<p>What do you call a graph that's almost an <a href="http://en.wikipedia.org/wiki/Arborescence%5F%28graph%5Ftheory%29" rel="nofollow">arborescence</a>, but where the edges go in the opposite direction? That is, a directed graph with a center node, where every node has exactly one path to the center?</p>
<p>It might help to have a reason for naming this thing. I'm looking to describe the control structure used in a continuation passing architecture. If the structure is called a "romefuz", we could say that continuation passing uses a call-romefuz rather than a call-stack.</p>
http://stackoverflow.com/questions/1685063/six-degrees-of-kevin-bacon-in-perl2Six degrees of Kevin Bacon in PerlMawnster2009-11-06T02:35:18Z2009-11-07T04:25:46Z
<p>First yes, this is a homework project for my Perl class. I am not looking for the answer (although that would be sweet). As I understand it I need to use a BFS and a regular expression to organize my data for use. I need some direction on this one. How do I use a BFS? Do I use a massive stack and go through each item in the stack? Should I use a giant hash table? Has anyone worked on this problem? How did you go about doing it? I just need some direction is all. Is this similar to a BST? Is this possible without using the graph module? Is this possible using hash values? </p>
http://stackoverflow.com/questions/1688103/algorithm-for-a-directed-graph-problem1Algorithm for a directed graph problemPranav2009-11-06T14:54:49Z2009-11-06T15:17:19Z
<p>Please help me out with an algorithm for the following problem - </p>
<p>Given a collection of facts, we would like to get rid of as much redundancy as possible. The facts involved in this problem are members of a transitive relation between uppercase letters. So each fact is a pair of uppercase letters such as AB meaning that A is related to B. A letter may or may not be related to itself, but transitivity holds: if A is related to B and B is related to C then we can infer that A is related to C.
Create a class FactCount that contains a method minFacts that is given a String[] known and that returns the size of the smallest set of facts that will allow us to infer everything (and only those things) that can be inferred from the facts contained in known.</p>
<p>Each element of known will contain 1 or more facts separated by a single space. The smallest set of facts may contain facts that can be inferred from known but that are not contained in it.</p>
<p>For example: </p>
<p>{"AB AC CA AA BC", "AD"}</p>
<p>Returns: 4</p>
<p>AB, CA, BC, and AD allow us to infer both AA (AB, BC, CA gives AA by transitivity) and AC (AB, BC gives AC by transitivity), and there is no smaller subset that allows us to infer all the known facts.</p>
<p>P.S - Its NOT homework. Just a problem I found online and have been unable to solve for hours...</p>
http://stackoverflow.com/questions/1657174/what-is-breadth-first-search-useful-for2What is breadth-first search useful for?Jason Baker2009-11-01T13:28:25Z2009-11-01T22:19:25Z
<p>Usually when I've had to walk a graph, I've always used depth-first search because of the lower space complexity. I've honestly never seen a situation that calls for a breadth-first search, although my experience <em>is</em> pretty limited.</p>
<p>When does it make sense to use a breadth-first search?</p>
<p><strong>UPDATE</strong>: I suppose my answer <a href="http://stackoverflow.com/questions/1655162/how-do-i-partition-a-bipartite-graph-by-color/1657167#1657167">here</a> shows a situation where I've used a BFS (because I thought was a DFS). I'm still curious to know though, why it was useful in this case.</p>
http://stackoverflow.com/questions/1655162/how-do-i-partition-a-bipartite-graph-by-color2How do I partition a bipartite graph by color?Jason Baker2009-10-31T18:21:15Z2009-11-01T13:31:26Z
<p>For instance, suppose I have a graph G = (V, E) where</p>
<p>V = {A, B, C, D}<br />
E = {(A, B), (A,D), (C, D)}</p>
<p>This graph is bipartite, and thus can be split into two disjoint sets {A, C} and {B, D}. My first guess is that I can simply walk the graph and assign alternating colors to each vertex. Is this the case, or is it more complicated/simpler than this? Are there any known algorithms for this?</p>
http://stackoverflow.com/questions/1656112/shortest-total-path-among-set-of-latitude-longitudes1Shortest total path among set of Latitude/Longitudes Brian Gianforcaro2009-11-01T01:32:55Z2009-11-01T07:43:09Z
<p>I have a set of 52 or so latitude/longitude pairs. I simply need to find the shortest path through all of them; it doesn't matter where staring point or ending point is. </p>
<p>I've implemented Dijkstra's algorithm by hand multiple times before and don't really have the time to do it again. I've found a couple things that come close, but most require raw graphs with pre-computed weights for each edge. </p>
<p>Do you know of any libraries or existing scripts/applications which will compute the shortest path in this manner? The code/libraries would preferably use Python or Clojure but it really doesn't matter.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/94975/how-do-you-solve-the-15-puzzle-with-a-star-or-dijkstras-algorithm5How do you solve the 15-puzzle with A-Star or Dijkstra's Algorithm?Sean2008-09-18T17:56:20Z2009-10-30T22:48:58Z
<p>I've read in one of my AI books that popular algorithms (A-Star, Dijkstra) for path-finding in simulation or games is also used to solve the well-known "15-puzzle".</p>
<p>Can anyone give me some pointers on how I would reduce the 15-puzzle to a graph of nodes and edges so that I could apply one of these algorithms?</p>
<p>If I were to treat each node in the graph as a game state then wouldn't that tree become quite large? Or is that just the way to do it?</p>
http://stackoverflow.com/questions/1612073/given-a-spanning-tree-and-an-edge-not-on-the-spanning-tree-how-to-form-a-cycle-b0Given a Spanning Tree and an Edge Not on the Spanning Tree, How to Form a Cycle Base?Ngu Soon Hui2009-10-23T08:26:16Z2009-10-26T19:16:50Z
<p>I have a graph with Edge <code>E</code> and Vertex <code>V</code>, I can find the spanning tree using <a href="http://en.wikipedia.org/wiki/Kruskal%27s%5Falgorithm" rel="nofollow">Kruskal algorithm</a> (or any other traverse-backtrack-traverse-again kind of algorithms), now I want to find all the cycle bases that are created by utilitizing that spanning tree and the edges that are not on the tree, any algorithm that allows me to do that, besides brute force search?</p>
<p>I can, of course, starts from one vertex of the non-spanning tree edge, gets all the edges, explore all of them, retracts if I find dead end, until I come back to the other vertex of the edge. But this is a bit, err... brutal. Any other ideas?</p>
http://stackoverflow.com/questions/1060521/checking-if-a-graph-is-random-using-the-erdsrenyi-model2Checking if a graph is random using the Erdős–Rényi model?unknown (yahoo)2009-06-29T20:59:01Z2009-10-25T05:11:01Z
<p>Given some graph, I would like to determine how likely it is that it was generated randomly. I was told that a comparison to the Erdős–Rényi model was a good way to get this information, but I can't quite figure out how to do that.</p>
<p>Any advice?</p>
http://stackoverflow.com/questions/1617012/why-dont-the-mainstream-dbmss-have-graph-functionality0Why don't the mainstream DBMSs have graph functionality?Doug McClean2009-10-24T05:00:35Z2009-10-24T05:47:37Z
<p>Relational databases are frequently used to store graphs in all their many flavors (trees, directed graphs, undirected graphs, ...).</p>
<p>Why then do none of the major DBMSs (Microsoft, MySql, Oracle, PostgreSQL, SqlLite, just to name a few in alphabetical order) include library support for treating relations as graphs?</p>
<p>Some desirable features, by way of example:</p>
<ul>
<li>Constraint checking (connectedness, acyclicity, planarity, ...)</li>
<li>Commonly needed functions (shortest path, minimum spanning tree, transitive closure, max flow/min cut, clique detection, Hamiltonian/Eulerian cycles ...)</li>
<li>Auxiliary data structures needed to improve performance for any of the above</li>
</ul>
<p>Building support for some of these things outside the database is complicated because (among other reasons):</p>
<ul>
<li>It's inherently complicated (libraries help here)</li>
<li>Short answers are often supported by lots of data: an external client running a shortest path algorithm would need to either be very "chatty" with the database or would need to retrieve a much-larger-than-needed amount of data; either choice is bad for the network</li>
<li>Maintaining integrity when integrity depends on a graph-theoretic constraint requires access to all proposed updates, hence a trigger, and access to existing graph libraries from triggers is complicated in many systems</li>
<li>The DBMS storage manager and optimizer are uniquely positioned to address the question of auxiliary data structures, as they do with indexes</li>
</ul>
<p>This isn't a rhetorical question, I actually want to know if there are interesting technical (or historical) reasons.</p>
http://stackoverflow.com/questions/960283/using-graph-theory-to-generate-an-exam-schedule1Using graph theory to generate an exam schedulekhan02009-06-06T18:43:52Z2009-10-23T16:17:37Z
<p>Hey SO,</p>
<p>I came across this website while looking for help on the internet regarding adj. matrix / graph theory. </p>
<p><strong>My program layout is as follows</strong>:</p>
<ul>
<li>student name + courses stored in a 2D</li>
<li>array array with all distinct courses</li>
</ul>
<p><strong>I am trying to achieve the following</strong>:</p>
<ul>
<li>use adjacency matrix to create an
exam schedule where no student needs
to write more than one exam a day</li>
</ul>
<p><strong>Once the matrix is made, the results on the screen should be displayed as:</strong></p>
<ul>
<li>output a day by day exam schedule by course </li>
<li>output the exam days of any student inquired</li>
</ul>
<p>I am not really sure how to work on this. AFAIK, the best approach would be to create an overall exam schedule of all the distinct courses and computing it in such a way that no exams conflict with one another. </p>
<p>Any help/advice/links is greatly appreciated.</p>
<p><hr /></p>
<p>Any suggestions on how to program this? I can't seem to find any pseudo code or guidance on programming the graph coloring problem.</p>
http://stackoverflow.com/questions/1605002/are-there-any-online-algorithms-for-planarity-testing3Are there any online algorithms for planarity testing?Doug McClean2009-10-22T04:19:37Z2009-10-22T18:36:52Z
<p>I know that <a href="http://en.wikipedia.org/wiki/Planarity%5Ftesting" rel="nofollow">planarity testing</a> can be done in O(v) (equivalently O(e), since planar graphs have O(v) edges) time.</p>
<p>I wonder if it can be done online in O(1) amortized time as each edge is added (still O(e) time overall).</p>
<p>In other words, in a database table representing edges of a graph and subject to a constraint that the represented graph is planar, how much time must the DBMS responsible for managing the constraint take to validate each proposed insertion? (For simplification, assume that there are no deletions.) Must it re-run one of the O(v) planarity testing algorithms to test each proposed insertion or group of insertions?</p>
http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices10Graph Algorithm To Find All Connections Between Two Arbitrary VerticesRobert2008-09-12T04:36:51Z2009-10-21T07:17:43Z
<p>I am trying to find out what is the best (time efficient) algorithm to accomplish the task described below.</p>
<p>I have a set of records. For this set of records I have connection data which indicates how pairs of records from this set connect to one another (basically a graph, the records being the vertices and the connection data the edges).</p>
<p>All of the records in the set have connection information (i.e. no orphan records are present; each record in the set connects to one or more other records in the set).</p>
<p>I want to choose any two (arbitrary) records from the set and be able to show all ways possible the chosen records connect (either directly or through other connections). </p>
<p>For example:</p>
<pre>
If I have the following records:
A, B, C, D, E
and the following represents the connections:
(A,B),(A,C),(B,A),(B,D),(B,E),(B,F),(C,A),(C,E),
(C,F),(D,B),(E,C),(E,F),(F,B),(F,C),(F,E)
[where (A,B) means record A connects to record B]
</pre>
<p>If I chose B as my starting record and E as my ending record, I would want to find all paths through the record connections that would connect record B to record E.</p>
<pre>
All paths connecting B to E:
B->E
B->F->E
B->F->C->E
B->A->C->E
B->A->C->F->E
</pre>
<p>This is an example, in practice I may have sets containing hundreds of thousands of records.</p>
http://stackoverflow.com/questions/1062231/graph-theory0Graph- TheoryHassaan Khaliq2009-06-30T07:27:36Z2009-10-20T18:00:02Z
<p>I am interested in finding the total number of cycles and cycles length in an connected undirected graph. If I can use DFS or DFS can only find a single cycle. Any code will definitely help ......</p>
<p>Thanks!</p>
<p>Hassu</p>
http://stackoverflow.com/questions/1424923/algorithm-to-find-overlapping-line-segments1Algorithm to Find Overlapping Line SegmentsmagneticMonster2009-09-15T03:08:37Z2009-10-11T03:41:46Z
<pre>
n4------------------n3--------------------n2--n1
| | | |
| | | P1 |
| | | |
| | n6--n5
| | |
| n11--n10 |
n17 P4 | | P2 |
| | P3 | n7
| n12---n9 |
| | n8
| | |
n16------------n15---------n14------------n13
</pre>
<p>In the above ASCII art, there are four polygons (P1, P2, P3, P4) with exactly-overlapping line segments. For example, polygon P2 (formed by line segments between nodes n3, 10, 9, 12, 15, 14, 13, 8, 7, 6, and 2) and P1 (n1, 2, 5, and 6) overlap at the line segment between n2 and n6.</p>
<p>What is the fastest way to find line segments that overlap exactly?</p>
http://stackoverflow.com/questions/143140/bron-kerbosch-algorithm-for-clique-finding3Bron-Kerbosch algorithm for clique findingAlex Reitbort2008-09-27T06:44:31Z2009-10-04T06:39:50Z
<p>Can anyone tell me, where on the web I can find an explanation for Bron-Kerbosch algorithm for clique finding or explain here how it works?</p>
<p>I know it was published in "Algorithm 457: finding all cliques of an undirected graph" book, but I can't find free source that will describe the algorithm.</p>
<p>I don't need a source code for the algorithm, I need an explanation of how it works.</p>
http://stackoverflow.com/questions/1255663/using-the-apriori-algorithm-for-recommendations2Using the apriori algorithm for recommendationsNick Johnson2009-08-10T15:46:54Z2009-09-19T16:57:20Z
<p>So a <a href="http://stackoverflow.com/questions/1248373/apriori-algorithm">recent question</a> made me aware of the rather cool <a href="http://en.wikipedia.org/wiki/Apriori%5Falgorithm" rel="nofollow">apriori algorithm</a>. I can see why it works, but what I'm not sure about is practical uses. Presumably the main reason to compute related sets of items is to be able to provide recommendations for someone based on their own purchases (or owned items, etcetera). But how do you go from a set of related sets of items to individual recommendations?</p>
<p>The Wikipedia article finishes:</p>
<blockquote>
<p>The second problem is to generate
association rules from those large
itemsets with the constraints of
minimal confidence. Suppose one of the
large itemsets is Lk, Lk = {I1, I2, …
, Ik}, association rules with this
itemsets are generated in the
following way: the first rule is {I1,
I2, … , Ik-1}⇒ {Ik}, by checking the
confidence this rule can be determined
as interesting or not. Then other rule
are generated by deleting the last
items in the antecedent and inserting
it to the consequent, further the
confidences of the new rules are
checked to determine the
interestingness of them. Those
processes iterated until the
antecedent becomes empty</p>
</blockquote>
<p>I'm not sure how the set of association rules helps in determining the best set of recommendations either, though. Perhaps I'm missing the point, and apriori is not intended for this use? In which case, what <em>is</em> it intended for?</p>