Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.  
  2. public class Test {
  3.     public static void main(String args[]) {
  4.         Rijeci r = new Rijeci(new Node("one", null));
  5.         r.insert("two");
  6.         r.insert("three");
  7.         r.insert("four");
  8.         r.insert("five");
  9.         r.delete("four");
  10.         r.printList();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement