Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
809 views

Topological sort in OCaml

I'm trying to write topological sorting in ocaml, but I'm a beginner (in OCaml & graphs algorithms) and I can't do this by myself. It's easier for me to think about topological sorting in, for ...
11
votes
5answers
1k views

Topological Sorting using LINQ

I have a list of items that have a partial order relation, i. e, the list can be considered a partially ordered set. I want to sort this list in the same way as in this question. As correctly answered ...
8
votes
4answers
915 views

Question from Interview, Retrieve alphabetic order from dictionary [closed]

My girlfriend got this question in an interview, and I liked it so much I thought I'd share it... Write an algorithm that receives a dictionary (Array of words). The array is sorted lexicographically, ...
7
votes
1answer
494 views

Partial order sorting?

Say, we have some items, and each defines some partial sorting rules, like this: I'm A and I want to be before B I'm C and I want to be after A but before D So we have items A,B,C,D with ...
6
votes
3answers
605 views

What is the best way to sort a partially ordered list?

Probably best illustrated with a small example. Given the relations A < B < C A < P < Q Correct outputs would be ABCPQ or APQBC or APBCQ ... etc. In other words, any ordering is ...
3
votes
1answer
772 views

Topological Sort

Consider the following algorithm for topological sort given in my textbook: Input: A digraph G with n vertices Output: A topological ordering v1,v2...vn of G, or the non-existence thereof. S is an ...
3
votes
2answers
690 views

How to sort depended objects by dependency

I have a collection: List<VPair<Item, List<Item>> dependencyHierarchy; The first item in pair is some object (item) and the second one is a collection of the same type objects that ...
3
votes
2answers
530 views

Topological sort variant algorithm

I have a set of data on which I need to perform a topological sort, with a few assumptions and constraints, and I was wondering if anyone knew an existing, efficient algorithm that would be ...
3
votes
2answers
183 views

How to sort a list of inter-linked tuples?

lst = [(u'course', u'session'), (u'instructor', u'session'), (u'session', u'trainee'), (u'person', u'trainee'), (u'person', u'instructor'), (u'course', u'instructor')] I've above list of tuple, I ...
3
votes
2answers
133 views

Imposing a Partial Ordering on Git Commit IDs

I'm converting the infrastructure at my workplace to use git instead of svn. The overall migration is going well, but we have a tool that I developed to do our SQL schema migrations. In order to ...
2
votes
3answers
146 views

Figuring out the path of a circular dependency

I am having trouble figuring out how I can print out the path of which circular dependency (cycle) exists. If the cycle exists that is. I am doing a topological sort on a graph (representing a ...
2
votes
2answers
173 views

Traveling Salesman Problem with additional partial ordering

I am looking for a name for this problem or any leads on an algorithm or source code: Example: You want to find the best route to visit the 100 largest cities in the US (classic TSP) but before you ...
2
votes
1answer
316 views

Algorithm for computing partial orderings of dependency graphs

I'm trying to compute a partial "topological sort" of a dependency graph, which is actually a DAG (Directed Acyclic Graph) to be precise; so as to execute tasks without conflicting dependencies in ...
1
vote
1answer
43 views

How to find all results of topological sorting

Since the results in topological sorting are not unique, there are other reasonable results. I have some relations like a->b b->c... etc. These relations are parts of a graph. I need to find all lists ...
1
vote
1answer
50 views

grouping with topology

I apologize if this question has already been answered in: Topological Sort with Grouping However, I do not completely understand the answer as I am new to graph theory. I have the following items: ...
1
vote
1answer
95 views

Topological sorting and cycles

I've got some input files from my teacher wich we are supposed to test the program with. The task is to read from file, create a directed graph and print out the output. But if there is a cycle we are ...
1
vote
1answer
284 views

Can the Jung2 graph library traverse a digraph

Does anyone know if the Java Jung2 graph library provides the in-built capability to traverse a Digraph given a start Vector? I did see that there's a BFSDistanceLabeler class that returns a map of ...
0
votes
1answer
33 views

Topological Sort using Boost::topological_sort

I am trying to use topological_sort function of boost. I am using the boost::adjacency_list with setS and listS as the underlying storage for edges and vertices. typedef ...
0
votes
1answer
30 views

How to check additional conflict information in a dependency graph?

When you have a dependency graph of a set of items you can do a standard topical sort to check if the graph contains cycles. If there is a cycle then there is a dependency that can not be satisfied ...
0
votes
1answer
52 views

Point handling for closed loop searching

I have set of line segments. Each contains only 2 nodes. I want to find the available closed cycles which produces by joining line segments. Actually, I am looking for the smallest loop if there exist ...
0
votes
1answer
89 views

[graph/DFS]: problem about dfs in DAG

Here is the pseudo-code copied from "intro to algorithm" for your convenience: DFS(G) 1 for each vertex u ∈ V [G] 2 do color[u] ← WHITE //color changes from WHITE,GRAY,BLACK 3 π[u] ...
0
votes
0answers
72 views

topology question [closed]

I would like to know if the following statement is true or false. Let X be a compact Hausdorff space and an infinite set. If X has a topology strictly weaker than the discrete topology, then the ...
0
votes
1answer
243 views

Starting Services — Directed Acyclic Graph

The framework I'm working with consists of stateful services that have dependencies on other services, forming a directed acyclic graph http://en.wikipedia.org/wiki/Directed_acyclic_graph I want to ...
0
votes
1answer
51 views

Automating populating list of function depencies

I have a set of data inputs X. I then have a set of functions F that each act on X and F (members of F can recurse) I would like to build a dependency graph of F and X on the fly. Each f_i() take ...
0
votes
2answers
429 views

Will a source-removal sort always return a maximal cycle?

I wrote a source-removal algorithm to sort some dependencies between tables in our database, and it turns out we have a cycle. For simplicity, let's say we have tables A, B, C, and D. The edges are ...
0
votes
2answers
2k views

Java: Access local variables from anon inner class? (PriorityQueue)

I want to use a PriorityQueue to do a topological sort on a graph. For brevity, I'd like to use an anonymous inner class for the comparator. However, I need access to the graph g in order to determine ...
0
votes
3answers
1k views

java: implementation of topological sort, from a reputable source

I'm looking for a reputable Java implementation of a topological sort, given a directed graph of dependencies (node #7 depends on node #2, node #2 depends on note #4, etc.), that will detect the ...