graph-scc-sig.sml

来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 30 行

SML
30
字号
(* graph-scc-sig.sml * * COPYRIGHT (c) 1999 Lucent Bell Laboratories. * *   Calculate strongly-connected components of directed graph. *   The graph can have nodes with self-loops. * * author: Matthias Blume *) signature GRAPH_SCC =  sig    structure Nd : ORD_KEY    type node = Nd.ord_key    datatype component      = SIMPLE of node			(* singleton, no self-loop *)      | RECURSIVE of node list    val topOrder: { root: node, follow: node -> node list } -> component list	(* take root node and follow function and return	 * list of topologically sorted strongly-connected components;	 * root component goes first	 *)  end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?