Guest User

Untitled

a guest
May 27th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public void insert(T d)
  2. {
  3. RList<T> x = new RList<T>();
  4. x.setData(d);
  5.  
  6. x.setN(this.n);
  7. x.setP(this);
  8. this.setN(x);
  9. this.n.setP(x);
  10.  
  11. }
Add Comment
Please, Sign In to add comment