Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Alternate Linked List Problem - S15.3
- Download the data file at
- http://sprunge.us/gaPQ
- It contains a ranked list of the most popular baby names in 1990.
- The first column is the ranking, the second column is a male name,
- the third column is a female name.
- Read the data file and create two linked lists (using java.util.LinkedList),
- one containing the ranked male names,
- and one containing the ranked female names.
- Then create a third list that contains names that are found in BOTH lists.
- That is, create a list of names that the first two lists have in common.
- Then print the resulting list.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement