Answer Posted / surya chandra mohan , visakhap
small modification for first program. But that one is really excellent.i really proud Indresh_ips.
import java.util.*;
class ArrayListUnique2 {
static public ArrayList uniqueArrayList(ArrayList arrl) {
int i;
String check="";
for(int k=0;k<arrl.size();k++) {
String s=arrl.get(k).toString();
if(!check.contains(s)){
check = check+s+", ";
}else{
arrl.remove(s);
}
}
return arrl;
}
public static void main (String[] args) {
ArrayList al= new ArrayList();
al.add("A");
al.add("A");
al.add("B");
al.add("C");
al.add("B");
al.add("A");
al.add("D");
al.add("D");
al.add("D");
al.add("D");
al.add("A");
al.add("B");
al.add("F");
al.add("G");
al.add("G");
al.add(10);
al.add(5);
al.add(10);
al.add(5);
System.out.println ("Before declaring unique:"+al);
ArrayList a=ArrayListUnique.uniqueArrayList(al);
System.out.println ("after declaring unique: "+a);
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is general methodology?
How many types of assembly languages are there?
which class is the wait() method defined in? : Java thread
Can java inner class be static?
Is boolean a data type in java?
what is the difference between the methods sleep() and wait()? : Java thread
What is the advantage of functional interface in java 8?
Why main function is static?
How concurrent hashmap works?
List some oops concepts in java?
Why are variables important in research?
Can a source file contain more than one class declaration?
Can we assign the reference to this variable?
How are observer and observable used in java programming?
What is void data type?