From charlesreid1

(Created page with "<pre> public abstract class Tree { abstract Node root(); abstract Node parent(Node n); abstract int num_children(Node n); abstract Node children(Node n); } </pre>")
 
(Redirected page to Java/Abstract Class)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<pre>
#REDIRECT [[Java/Abstract Class]]
public abstract class Tree {
  abstract Node root();
  abstract Node parent(Node n);
  abstract int num_children(Node n);
  abstract Node children(Node n);
}
</pre>

Latest revision as of 19:49, 18 June 2017