Untitled
unknown
java
2 years ago
164 B
4
Indexable
package LAB8; public class Node { int key; int height; Node left; Node right; Node(int d) { key = d; height = 1; } }
Editor is loading...
package LAB8; public class Node { int key; int height; Node left; Node right; Node(int d) { key = d; height = 1; } }