menu
home
Home
search
Search
people
About Us
exit_to_app
Login
home
Home
search
Search
people
About Us
exit_to_app
Login
Practicing for Preorder Traversal of Data Structure
Questions 1 of 10
Q. Select the code snippet which performs pre-order traversal.
public void preorder(Tree root) {
System.out.println(root.data);
preorder(root.data);
preorder(root.right);
}
public void preorder(Tree root) {
preorder(root.left);
System.out.println(root.data);
preorder(root.right);
}
public void preorder(Tree root) {
System.out.println(root.data);
preorder(root.left);
preorder(root.right);
}
public void preorder(Tree root) {
preorder(root.left);
preorder(root.right);
System.out.println(root.data);
}
Submit
lock
Login
person
Signup
Email
Password
Name
Email
Password
Confirm Password