12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
-
- import java.lang.Integer;
-
- public class IntegerDuplicateDeleter extends DuplicateDeleter<Integer>{
-
- public IntegerDuplicateDeleter(Integer[] array){
- super(array);
- }
-
- public Integer[] removeDuplicates(int maxNumberOfDuplications){
- Integer[] newArray=new Integer[100];
-
- int m=0;
- for(int i=0;i<array.length;i++)
- {
- int k=noOfOccurrence(array[i]);
- if(k<maxNumberOfDuplications)
- {
- newArray[m]=array[i];
-
- m++;
-
- }
- }
- Integer[] resultArray=new Integer[m];
- for(int i=0;i<m;i++)
- {
- resultArray[i]=newArray[i];
- }
-
-
- return resultArray;
- }
- public int noOfOccurrence(Integer a)
- {
- int count=0;
- for(int i=0;i<array.length;i++)
- {
- if(array[i].equals(a))
- {
- count++;
- }
- }
-
- return count;
-
-
-
- }
-
- public Integer[] removeDuplicatesExactly(int exactNumberOfDuplications){
- Integer[] newArray=new Integer[100];
-
- int m=0;
- for(int i=0;i<array.length;i++)
- {
- int k=noOfOccurrence(array[i]);
- if(k!=exactNumberOfDuplications)
- {
- newArray[m]=array[i];
-
- m++;
-
- }
- }
- Integer[] resultArray=new Integer[m];
- for(int i=0;i<m;i++)
- {
- resultArray[i]=newArray[i];
- }
- System.out.println(resultArray);
-
- return resultArray;
-
-
- }
-
-
- }
-
-
|