29 lines
334 B
Plaintext
29 lines
334 B
Plaintext
|
class Listststst4<A>
|
||
|
{
|
||
|
A objec = null;
|
||
|
Listststst4<A> next = new Listststst4();
|
||
|
|
||
|
void insert(A obj)
|
||
|
{
|
||
|
if(objec = null)
|
||
|
{
|
||
|
objec = obj;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
next.insert(obj);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
A getObjectAt(int n)
|
||
|
{
|
||
|
if(n = 0)
|
||
|
{
|
||
|
return objec;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return next.getObjectAt(n-1);
|
||
|
}
|
||
|
}
|
||
|
}
|