15
votes
14answers
747 views
When are interfaces needed?
(In the context of .NET for what its worth)
I tend to not use inheritance and rarely use interfaces. I came across someone who thinks interfaces are the best thing since spit. He uses them …
12
votes
16answers
1k views
What are some examples of problems that are best solved with graphs?
After reading Stevey Yegge's Get That Job At Google article, I found this little quote interesting:
Whenever someone gives you a problem, think graphs. They are the most fundamental and flexible …
11
votes
4answers
439 views
Efficient way to recursively calculate dominator tree?
I'm using the Lengauer and Tarjan algorithm with path compression to calculate the dominator tree for a graph where there are millions of nodes. The algorithm is quite complex and I have to admit I …
10
votes
3answers
451 views
Good algorithm for finding the diameter of a (sparse) graph?
I have a large, connected, sparse graph in adjacency-list form. I would like to find two vertices that are as far apart as possible, that is, the diameter of the graph and two vertices achieving it.
…
10
votes
13answers
3k views
Graph Algorithm To Find All Connections Between Two Arbitrary Vertices
I am trying to find out what is the best (time efficient) algorithm to accomplish the task described below.
I have a set of records. For this set of records I have connection data which indicates how …
9
votes
10answers
451 views
Algorithms for helping humans choose (kitten war, for instance)
Ok, I'm facing an imminent addition to my family, and working through choice of names.
I've considered writing software to display names and force me to choose which I like better, similar to kitten …
9
votes
8answers
573 views
Can you suggest a good book on graphs and graph algorithms?
Can you suggest a good book or other resource on graphs and graph algorithms? Something that will cover some basics but also advanced problems and algorithms.
9
votes
6answers
4k views
Best algorithm for detecting cycles in a directed graph
What is the most effiecent alogrithm for detecting all cycles within a directed graph?
or
I have a directed graph representing a schedule of jobs that need to be exectuted, a job being a node and a …
8
votes
10answers
221 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 I genuinely believe …
8
votes
4answers
465 views
Calculate Family Relationship from Genealogical Data
I would like to be able to calculate the family relationship between two individuals in a family tree, given the following data schema (simplified from my actual data schema, only showing columns that …
7
votes
4answers
318 views
Efficient way to practice graph theory algorithms
I just read about the breadth-first search algorithm in the Introduction to Algorithms book and I hand simulated the algorithm on paper. What I would like to do now is to implement it in code for …
7
votes
4answers
493 views
How can I prove the “Six Degrees of Separation” concept programmatically?
I have a database of 20 million users and connections between those people. How can I prove the concept of "Six degrees of separation" concept in the most efficient way in programming?
link to the …
7
votes
5answers
364 views
Algorithm for Finding Redundant Edges in a Graph or Tree
Is there an established algorithm for finding redundant edges in a graph?
For example, I'd like to find that a->d and a->e are redundant, and then get rid of them, like this:
=>
Edit: Strilanc …
6
votes
8answers
557 views
What algorithm can I use to find the shortest path between specified node types in a graph?
This is the problem:
I have n points (p1, p2, p3, .. pn), each of them can connect to any other with a determined cost x.
Each point belongs to one of a set of point-types (for example "A" "B" "C" …
6
votes
6answers
1k views
Secret santa algorithm.
Every Christmas we draw names for gift exchanges in my family. This usually involves mulitple redraws until no one has pulled their spouse. So this year I coded up my own name drawing app that takes …
