Merge pull request #1521 from Nishant-Ingle/master

Add comment above parameterised constructor
This commit is contained in:
Yang Libin
2020-10-02 15:49:56 +08:00
committed by GitHub

View File

@@ -321,6 +321,11 @@ class Node {
this(value, null);
}
/**
* Constructor
* @param value Value to be put in the node
* @param next Reference to the next node
*/
Node(int value, Node next) {
this.value = value;
this.next = next;