Question: please write the code in python. UESTION 1- Please write a code that searches for a node in a tree structure. If it finds the

please write the code in python.
UESTION 1- Please write a code that searches for a node in a tree structure. If it finds the node given the code must eturn all the parent nodes starting from the first node to the node that we found. Signature of the function could be: public class Node \{ public int value; public List> children; \} public List getParents(Node rootNode, int valueToSearch,..) \}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
