mirror of
https://github.com/Rushilwiz/APCS.git
synced 2025-04-05 13:00:20 -04:00
27 lines
532 B
Java
27 lines
532 B
Java
//the College Board's standard ListNode class
|
|
public class ListNode
|
|
{
|
|
private Object value;
|
|
private ListNode next;
|
|
public ListNode(Object v, ListNode n)
|
|
{
|
|
value=v;
|
|
next=n;
|
|
}
|
|
public Object getValue()
|
|
{
|
|
return value;
|
|
}
|
|
public ListNode getNext()
|
|
{
|
|
return next;
|
|
}
|
|
public void setValue(Object newv)
|
|
{
|
|
value=newv;
|
|
}
|
|
public void setNext(ListNode newn)
|
|
{
|
|
next=newn;
|
|
}
|
|
} |