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 / athira

package com.modon;

import java.util.ArrayList;

public class MyArrayList {

public static void main(String[] args) {

ArrayList<Object> dupList=new ArrayList<Object>();

ArrayList<Object> resultList=new ArrayList<Object>();
dupList.add(1);
dupList.add(2);
dupList.add(3);
dupList.add("D");
dupList.add("A");
dupList.add("F");
dupList.add("A");
dupList.add("A");
dupList.add(1.5);
dupList.add(1.50);
dupList.add(new String("A"));
dupList.add(new Integer(3));

for(Object s:dupList){

if(!resultList.contains(s))
resultList.add(s);
}

System.out.println("dupList: "+dupList.size());

System.out.println("resultList: "+resultList.size());

}

}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is double data type?

723


What is the purpose of using java.lang.class class?

701


What is the use of 'super' keyword inside a constructor?

726


What is arrays aslist in java?

709


Where to store local variables?

767


What is stream api in java8?

736


What is meant by vector class, dictionary class, hash table class, and property class?

887


Explain about static nested classes in java?

794


What are the legal operands of the instanceof operator?

768


Can extern variables be initialized?

669


What is default switch case? Give example.

760


What does replaceall do in java?

668


Name component subclasses that support painting in java programming?

807


What is difference between classpath and path variables in java?

828


How define set in java?

741