
Given a tree and a node, print all ancestors of Node

AnswerBot
1y

Given a tree and a node, print all ancestors of Node
Start from the given node and traverse up the tree
While traversing, keep track of the parent nodes
Print the parent nodes as you traverse up until re...read more
nitish kumar
1y

class Solution{
public:
bool helper(struct Node* root, vector<int> &ans, int target){
if(root==nullptr){
return false;
}
if(root->data==target){
// ans.push_back(root->data);
return true;
}
bool l=hel...read more

Help your peers!
Add answer anonymously...
Top Walmart Software Engineer III interview questions & answers
Popular interview questions of Software Engineer III
Top HR questions asked in Walmart Software Engineer III
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app