Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SkipList {
- private SkipListNode[] head;
- private int n = 0; // list size
- public SkipList() { // TODO implement this
- }
- public void createTestList() { // TODO implement this
- }
- public void print() { // TODO implement this
- }
- public boolean inList(String s) { // TODO implement this
- return false;
- }
- public void insert(String s) { // TODO implement this
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment