Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey, everyone. I'm new to Java and I have 2D LinkedList like this:

LinkedList<LinkedList<String>> albums = new LinkedList<LinkedList<String>>();

Which is filled with data like so:

if (!artist.isEmpty() && !name.isEmpty()) {
    albums.add(new LinkedList<String>());
    albums.getLast().add(artist.toString());
    albums.getLast().add(name.toString());
}

But I want to make sure my list has no duplicate albums. How to check whenever my albums list already contains same pair of artist and name?

share|improve this question
1  
I'm not sure you need to use a 2d LinkedList in this case. You could just make a new class with two properties: Artist and Name, and then have a linked list of Albums. – Corey Sunwold Dec 11 '09 at 23:48

2 Answers

up vote 2 down vote accepted

My suggestion would be to create a new class, called Album that looks something like this:

public class Album
{
    private String name;
    private String artist;

    public Album(String name, String artist)
    {
        this.name = name;
        this.artist = artist;
    }

    public String getName()
    {
        return name;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public String getArtist()
    {
        return artist;
    }

    public void setArtist(String artist)
    {
        this.artist = artist;
    }

    public boolean equals(Object o)
    {
        if (o instanceof Album)
        {
            Album that = (Album)o;
            return album.equals(that.album) && artist.equals(that.artist);
        }
        else
        {
            return false;
        }
    }

    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((album == null) ? 0 : album.hashCode());
        result = prime * result + ((artist == null) ? 0 : artist.hashCode());
        return result;
    }
}

Then you should be able to use contains() to check whether or not the album already exists in the linked list.

share|improve this answer
Equals must take an Object!!! and you should implement hash code. – akuhn Dec 12 '09 at 0:00
@Adrian: Thanks, I don't program in Java often. – Corey Sunwold Dec 12 '09 at 0:03
if you add @Override to the method, the compiler will warn you about such errors. – akuhn Dec 12 '09 at 0:04
thanks everyone, writing a class for this totally makes sense. I don't quite understand how the hashCode() works tho :) – rukoche Dec 12 '09 at 0:31
1  
Just an observation--with this type of class, don't make them mutable by default; by that I mean if you don't HAVE to, don't define any setters and make your variables final. It's just a good habit to pick up--not a law or anything. – Bill K Dec 12 '09 at 0:34
show 2 more comments

Yes, commenter is right. Create a class Album with artist and name fields and implement equals() (and hashCode()) on them. And then you can use contains() to find the duplicate. Or even consider using a Set (but only if hash code is really defined on your class, since a set is backed by a hash).

share|improve this answer
Is hash() necessary to use the contains() method? – Corey Sunwold Dec 11 '09 at 23:57
Not on a linked list (but if you ever gonna use a map or set, you Must have one. Just XOR the hash of the artist and name string). – akuhn Dec 11 '09 at 23:59
The name of method is hashCode. It's a defacto standard to implement hashCode when you implement equals. Strictly speaking hashCode is not necessary for contains to work. – Alexander Pogrebnyak Dec 12 '09 at 0:16
1  
"Strictly speaking hashCode is not necessary for contains to work." Agreed. But anyone who fails to keep hashcode and equals consistent deserves to be hung, drawn and quartered. :-) – Stephen C Dec 12 '09 at 0:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.