User profile: ajayk

User info
User name:ajayk
Name:Ajay Kumar
Location:Pune
History
Joined:
Number of posts:3
Latest posts:

Merging of sorted doubly linked list
Thanks i got it. [code] node* node::merge( node** head1, node** head2, node** result ) { if( ...

Merging of sorted doubly linked list
my node::Insert() function puts new node at tail. the problem is only in node::merge() ,but what it ...

Merging of sorted doubly linked list
why this code giving me an error! [code] #include<iostream> #include<assert.h> using namespace std...