Created
November 10, 2022 15:14
-
-
Save nbenn/1fb158cd0684df51ff5bde4a12ac4bdc to your computer and use it in GitHub Desktop.
Topo sort dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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