class IntSet12 { // Destructive Set class, sets stored as ordered linked lists private Cell list; public void delete(int n) { if(list!=null) if(list.first==n) list=list.next; else { Cell ptr; for(ptr=list; ptr.next!=null&&ptr.next.firstn) ptr.next = new Cell(n,ptr.next); } } public boolean member(int n) { Cell ptr; for(ptr=list; ptr!=null&&ptr.first