1
vote
2answers
82 views
Pac-Man representation with Finite State Automaton
Hi there,
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 t …
2
votes
2answers
196 views
Six degrees of Kevin Bacon in Perl
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 expr …
1
vote
1answer
50 views
Algorithm for a directed graph problem
Please help me out with an algorithm for the following problem -
Given a collection of facts, we would like to get rid of as much redundancy as possible. The facts involved in th …
2
votes
8answers
155 views
What is breadth-first search useful for?
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-fir …
2
votes
5answers
87 views
How do I partition a bipartite graph by color?
For instance, suppose I have a graph G = (V, E) where
V = {A, B, C, D}
E = {(A, B), (A,D), (C, D)}
This graph is bipartite, and thus can be split into two disjoint sets {A, C} an …
1
vote
3answers
138 views
Shortest total path among set of Latitude/Longitudes
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.
I've imp …
1
vote
3answers
67 views
Algorithms to Identify All the Cycle Bases in a UnDirected Graph
I have an undirected graph with Vertex V and Edge E. I am looking for an algorithm to identify all the cycle bases in that graph.
I think Tarjans algorithm is a good start. But t …
3
votes
1answer
78 views
Are there any online algorithms for planarity testing?
I know that planarity testing can be done in O(v) (equivalently O(e), since planar graphs have O(v) edges) time.
I wonder if it can be done online in O(1) amortized time as each e …
7
votes
9answers
184 views
How can I learn higher-level programming-related math without much formal training?
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 …
0
votes
6answers
116 views
What’s the name for directed trees with edges pointing towards the root?
What do you call a graph that's almost an arborescence, but where the edges go in the opposite direction? That is, a directed graph with a center node, where every node has exactly …
0
votes
1answer
56 views
Why don’t the mainstream DBMSs have graph functionality?
Relational databases are frequently used to store graphs in all their many flavors (trees, directed graphs, undirected graphs, ...).
Why then do none of the major DBMSs (Microsoft …
0
votes
2answers
34 views
Given a Spanning Tree and an Edge Not on the Spanning Tree, How to Form a Cycle Base?
I have a graph with Edge E and Vertex V, I can find the spanning tree using Kruskal algorithm (or any other traverse-backtrack-traverse-again kind of algorithms), now I want to fin …
1
vote
3answers
196 views
Algorithm to Find Overlapping Line Segments
n4------------------n3--------------------n2--n1
| | | |
| | | P1 |
| | …
0
votes
3answers
162 views
Graph Theory Question
This is a two part question.
In a reunion of 20 people, there are 48 pairs of people that know each other.
a) Justify why there is, at least, one person who knows, at most, othe …
2
votes
2answers
122 views
Using the apriori algorithm for recommendations
So a recent question made me aware of the rather cool apriori algorithm. I can see why it works, but what I'm not sure about is practical uses. Presumably the main reason to comput …
