Searched refs:stack (Results 1 – 2 of 2) sorted by relevance
54 let mut stack = Vec::new(); in topological_sort() localVariable57 stack.push(i); in topological_sort()60 while stack.len() > 0 { in topological_sort()61 let index = stack.pop().unwrap(); in topological_sort()72 stack.push(edge); in topological_sort()
56 let mut stack = Vec::new(); in topological_sort() localVariable59 stack.push(i); in topological_sort()62 while stack.len() > 0 { in topological_sort()63 let index = stack.pop().unwrap(); in topological_sort()74 stack.push(edge); in topological_sort()