I have a Arraylist object, it has duplecate values also. Now
question is i want delete duplecate data in that objet with
out using Set?

Answer Posted / gopal

Guys lets keep it simple:

/**
Remove duplicates from ArrayList<String> without using Set
*/
private static void removeDuplicates (ArrayList<String> al) {
for (int i=0;i <al.size(); i++) {
int index = al.lastIndexOf(al.get(i));
if (index != -1 && index != i) {
al.remove(i);
index = al.lastIndexOf(al.get(i));
}
}
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of file class?

736


What is the difference between a switch statement and an if statement?

723


What is an example of declaration?

728


Can we sort hashmap in java?

701


How define set in java?

738


What do you mean by jjs in java8?

744


What is concurrent hashmap and its features?

725


Can you override a final method?

760


What are java threads?

820


What is the role of garbage collector in java?

683


How to make a class or a bean serializable?

704


How do you override a method?

724


Is java call by reference?

694


Explain garbage collection in java?

719


What is a substring of a string?

754