74
showLL(L)
: |
Input
linked list L | |
if
L≠NULL
do
| print L.value |
showLL(L.next)
|
end if