MCPcopy Create free account
hub / github.com/MolinDeng/Princeton-algs4 / Node

Class Node

LabEnv/09Lab/BoggleSolver.java:13–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11
12public class BoggleSolver {
13 private static class Node {
14 private boolean isTernimal = false;
15 private Node[] children = new Node[26];
16 }
17
18 private final Node root; // should not be modified
19 private final int[][] dirs = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected