Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class Node {
2
public Bike element;
3
public Node next;
4
5
public Node(Bike element) {
6
this.element = element;
7
}
8
9
@Override
10
public String toString() {
11
return "Node[element=" + element + "]";
12
}
13
}
14
15