Interview Questions

Software Design Engineers in Test - We have 2 sorted lists.?

Software Design Engineers in Test SDET FAQ


(Continued from previous question...)

12. Software Design Engineers in Test - We have 2 sorted lists.?

Question:
We have 2 sorted lists. write a function to merge 2 lists keep it result list sorted. with creating a new node.
node* merge(l1,l2)
struct node{
int a;
node * next;
}

(Continued on next question...)

Other Interview Questions