Initial commit

This commit is contained in:
Ethan
2019-12-15 20:35:23 -06:00
commit b5183f51c3
118 changed files with 40636 additions and 0 deletions
@@ -0,0 +1,18 @@
package org.rebotted.collection;
public class Linkable {
public long key;
public Linkable previous;
public Linkable next;
public final void unlink() {
if (next == null) {
} else {
next.previous = previous;
previous.next = next;
previous = null;
next = null;
}
}
}