Given two lists L1 and L2, write a function, Concat(L1,L2), to return a pointer to a list in which the nodes of L2 follow the nodes of L1 . For example, if, beforehand, L1 == (ARN, BRU) and L2 == (JFK, SAN, HKG), then the node pointer returned by Concat(L1,L2) should point to the list (ARN, BRU, JFK, SAN, HKG). (Note: ARN is Stockholm, Sweden, and HKG is Hong Kong.)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here