Examples of Topological sorts in Massive graphs
Asked Answered
T

2

9

I am interested in finding some real world massive data sets (>=1M) which needed to be topologically sorted. Perhaps something relating to bioinformatics?

Togo answered 12/6, 2017 at 0:3 Comment(3)
Is this a history question ("What big data sets has someone sorted topologically?") or a request for examples ("What accessible data sets might be interesting to sort topologically?")?Lougheed
@DavisHerring The later. I am in need of some "big data" applications of topological sorting.Togo
The "Related" list suggests a very similar question.Lougheed
W
1

Did you have a look at the Stanford Large Network Dataset Collection? There are plenty of real world datasets, huge ones too, many of them directed.

Wilen answered 12/9, 2017 at 9:54 Comment(1)
I did, but I don't see why you would need to topologically sort them. I did try to think of a "meaning" of their sort but it just made slight to no senseTogo
L
1

There are 650k commits in the Linux git history; performing a topological sort on the separate commits would have the plausible purpose of rediscovering the branches (merged or no).

You could extend this well past a million objects by including the other Git object types (tags, trees, and blobs): then the topological sort would reconstruct the directory hierarchies as well as the commit history.

Lougheed answered 15/9, 2017 at 8:56 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.