Skip to content

Commit bb2c65c

Browse files
author
Manjunath
committed
diagnoal Traversal of binary tree
1 parent b150c93 commit bb2c65c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data-Structure/Trees/diagnolTraversal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ tree.rightNode.rightNode.rightNode = new Node(15);
5050
// / \ / \
5151
// 4 5 6 7
5252
// / \ / \ / \ / \
53-
// 8 9 10 11 12 13 14 15
53+
// 8 9 10 11 12 13 14 15
5454
let hm = new Map();
5555
dignolTraversal(tree, 0, hm);
5656
for (const valueArr of hm.values())

0 commit comments

Comments
 (0)