mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-15 01:40:49 +08:00
count singly linked list using recursion
This commit is contained in:
26
DataStructures/Lists/CountSinglyLinkedListRecursion.java
Normal file
26
DataStructures/Lists/CountSinglyLinkedListRecursion.java
Normal file
@ -0,0 +1,26 @@
|
||||
package DataStructures.Lists;
|
||||
|
||||
public class CountSinglyLinkedListRecursion extends SinglyLinkedList {
|
||||
public static void main(String[] args) {
|
||||
CountSinglyLinkedListRecursion list = new CountSinglyLinkedListRecursion();
|
||||
for (int i = 1; i <= 5; ++i) {
|
||||
list.insert(i);
|
||||
}
|
||||
assert list.count() == 5;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate the count of the list manually using recursion.
|
||||
*
|
||||
* @param head head of the list.
|
||||
* @return count of the list.
|
||||
*/
|
||||
private int countRecursion(Node head) {
|
||||
return head == null ? 0 : 1 + countRecursion(head.next);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int count() {
|
||||
return countRecursion(getHead());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user