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
What is the purpose of file class?
What is the difference between a switch statement and an if statement?
What is an example of declaration?
Can we sort hashmap in java?
How define set in java?
What do you mean by jjs in java8?
What is concurrent hashmap and its features?
Can you override a final method?
What are java threads?
What is the role of garbage collector in java?
How to make a class or a bean serializable?
How do you override a method?
Is java call by reference?
Explain garbage collection in java?
What is a substring of a string?