Saturday, December 17, 2011

Identical Lists or not

Question 1:Write a program to check whether two Linked Lists are same or NOT
http://www.geeksforgeeks.org/identical-linked-lists/

1 comment:

  1. to check if two lists are same, only head should be compared, if they are same lists are same otherwise not. This is different from two list converging into one list question.

    ReplyDelete