Guest User

Untitled

a guest
Nov 12th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. class SkipList {
  2. private SkipListNode[] head;
  3. private int n = 0; // list size
  4. public SkipList() { // TODO implement this
  5. }
  6. public void createTestList() { // TODO implement this
  7. }
  8. public void print() { // TODO implement this
  9. }
  10. public boolean inList(String s) { // TODO implement this
  11. return false;
  12. }
  13. public void insert(String s) { // TODO implement this
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment