A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public static int[] noRepeat(int [] num)        {
ArrayList<Integer> al= new ArrayList<Integer>();
               
                //对数组列表进行赋值
                for(int i=0;i<num.length;i++)
                        al.add(Integer.valueOf(num[i]));
                //去重复操作
                for(int index=0;index<al.size()-1;index++)
                       
                        for(int j=index+1;j<al.size();j++)
                               
                                        if(al.get(index).equals(al.get(j)))
                                                al.remove(j);
                                        else continue;
                int [] num1=new  int[al.size()];
                ListIterator<Integer> it=al.listIterator();
                for(int i=0;it.hasNext();i++)
                        num1[i]=it.next().intValue();
return num1;
}

1 个回复

倒序浏览
自己顶!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马