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