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


Please Help Members By Posting Answers For Below Questions

How do you avoid global variables?

749


How do you identify independent and dependent variables?

713


What is break and continue statement?

779


What is the generic class?

698


How does map works in java?

722


What is identifier with example?

779


Can a class extends itself in java?

745


What do you understand by access specifiers in Java?

773


What is the default value of an object reference declared as an instance variable?

744


What is core java used for?

722


What is the difference between length and length() method in java?

838


What is meant by interface?

762


What is the format specifier?

698


What is exception hierarchy in java?

753


Can each java object keep track of all the threads that want to exclusively access it?

732