Skip to content

Instantly share code, notes, and snippets.

@nbenn
Created November 10, 2022 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbenn/1fb158cd0684df51ff5bde4a12ac4bdc to your computer and use it in GitHub Desktop.
Save nbenn/1fb158cd0684df51ff5bde4a12ac4bdc to your computer and use it in GitHub Desktop.
Topo sort dm
dfs <- function(x, child, parent) {
visit <- function(i) {
if (perm[i]) {
return(NULL)
}
if (temp[i]) stop("Not a DAG")
temp[i] <<- TRUE
for (j in unique(parent[which(i == child)])) visit(j)
temp[i] <<- FALSE
perm[i] <<- TRUE
res <<- c(i, res)
NULL
}
stopifnot(
identical(length(child), length(parent)),
all(child %in% x), all(parent %in% x), all(child != parent)
)
if (!length(child)) {
return(x)
}
child <- match(child, x)
parent <- match(parent, x)
perm <- logical(length(x))
temp <- logical(length(x))
res <- integer()
while (!all(perm)) {
visit(which(!perm)[1L])
}
x[res]
}
topo_sort_tables <- function(dm) {
dm_fks <- dm::dm_get_all_fks(dm)
dfs(names(dm), dm_fks[["child_table"]], dm_fks[["parent_table"]])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment