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 / murli
solution without taking time complexity into account
List arr = new ArrayList();
for(int i=0;i<count;i++){
for(int j=i+1;j<count;j++){
if(arr.get(i)!=null && arr.get(i).equals(arr.get(j))){
arr.set(j, null);
}
}
}
while(arr.contains(null))
arr.remove(null);
Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
How do you avoid global variables?
How do you identify independent and dependent variables?
What is break and continue statement?
What is the generic class?
How does map works in java?
What is identifier with example?
Can a class extends itself in java?
What do you understand by access specifiers in Java?
What is the default value of an object reference declared as an instance variable?
What is core java used for?
What is the difference between length and length() method in java?
What is meant by interface?
What is the format specifier?
What is exception hierarchy in java?
Can each java object keep track of all the threads that want to exclusively access it?