We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8bd499 commit 39b32a2Copy full SHA for 39b32a2
src/main/java/com/thealgorithms/datastructures/trees/GenericTree.java
@@ -28,7 +28,7 @@ public GenericTree() { // Constructor
28
root = create_treeG(null, 0, scn);
29
}
30
31
- private Node create_treeG(Node node, int childIndx, Scanner scn) {
+ private Node create_treeG(Node node, int childIndex, Scanner scanner) {
32
// display
33
if (node == null) {
34
System.out.println("Enter root's data");
0 commit comments