APCS/04 ListNode/03 Josephus/ListNode.java
Rushil Umaretiya 3fc3554899 initial commit
2020-12-04 22:00:49 -05:00

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;
}
}