()
| 56 | } |
| 57 | |
| 58 | private void createDegrees() { |
| 59 | for (char c : this.adjList.keySet()) { |
| 60 | this.degrees.put(c, this.adjList.get(c).size()); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | private List<Character> topologicalSort() { |
| 65 | // take zero degrees first into a queue |
no test coverage detected