209 views

1 Answer

Related questions

0 votes
0 votes
1 answer
2
Vaishnavi01 asked Sep 17, 2018
660 views
struct node* foo(struct node* a, struct node* b){ struct node* result, *rec; if(a==null) return b; else if(b==null) return a; else { rec=foo(a->next,b->next...
1 votes
1 votes
1 answer
3
pradeepchaudhary asked Aug 19, 2018
1,831 views
What kind of linked list is best to answer question like “What is the item at position n?”a) Singly linked listb) Doubly linked listc) Circular linked listd) Array im...
1 votes
1 votes
0 answers
4
saipriyab asked Nov 25, 2017
1,435 views
Let P be a single linked list.Let Q be a pointer to an intermediate node 'X' in the list.What is the worst case time complexity of best known algorithm to delete the node...