Advertisement
je0v4ne

Untitled

Sep 5th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class CircleList {
  2.     // O cursor corrente
  3.     protected CNode cursor;
  4.     // A quantidade de nodos da lista
  5.     protected int size;
  6.  
  7.     public CircleList() {
  8.         cursor = null;
  9.         size = 0;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement