BonsaiTree is PAINJNNNNNNNNN

This commit is contained in:
linly
2022-05-17 16:20:56 +02:00
parent 2b4d48fb93
commit a6368c8cdf
3 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package ScuffedLinkedList;
public class BonsaiLeaf {
BonsaiLeaf left;
BonsaiLeaf right;
int value;
public BonsaiLeaf(int value) {
this.value = value;
}
}