how to copy one linked list contents to another linked list
Posted
by Zeeshan Raja
on Stack Overflow
See other posts from Stack Overflow
or by Zeeshan Raja
Published on 2009-11-10T17:19:36Z
Indexed on
2010/03/31
23:13 UTC
Read the original article
Hit count: 694
linked-list
|c++
Hi, I have been given list L1, L2. L1 contains 1,2,3 and L2 contains 4,5,6. how do i copy the contents from L2 to the end of L1 so in the end L1 contains 1,2,3,4,5,6. any suggestions?
© Stack Overflow or respective owner