Topological sort: Difference between revisions

m
(Mathematica)
Line 514:
 
typedef struct item_t item_t, *item;
struct item_t { const char *name; int *deps, n_deps, idx, depth; };
 
int get_item(item *list, int *len, const char *name)
{
int i;
Line 617:
3: dw02 dw01 dw05 dw06 dw07
4: des_system_lib dw03 dw04</lang>
 
 
=={{header|Clojure}}==
Anonymous user