XYZ CODE
Learning java, javascript, HTML, CSS, shell, python with fun javascript games and videos
LNode.java
public
class
LNode<E> {
LNode<E>
next
;
E
value
;
public
LNode(E
value
, LNode<E>
next
) {
this
.
value
=
value
;
this
.
next
=
next
;
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment