java数组去重总结

1、背景

根据不同的业务逻辑,经常会遇到数组中存在多个重复元素的场合,总结了下数组的排序,留个记录。

2、实现方法


总结了四种方法,接下来进行展示

1、方法一

                //数组去重方法一
		String[] array = {"a","b","c","c","d","e","e","e","a"};
		List<String> result = new ArrayList<>();
		boolean flag;
		for(int i=0;i<array.length;i++){
			flag = false;
			for(int j=0;j<result.size();j++){
				if(array[i].equals(result.get(j))){
					flag = true;
					break;
				}
			}
			if(!flag){
				result.add(array[i]);
			}
		}
		String[] arrayResult = (String[]) result.toArray(new String[result.size()]);
		System.out.println(Arrays.toString(arrayResult));
先遍历原数组,然后遍历结束集,通过每个数组的元素和结果集中的元素进行比对,若相同则break。若不相同,则存入结果集。
两层循环进行遍历得出最终结果。

2、方法二

		//数组去重方法二
		String[] array = {"a","b","c","c","d","e","e","e","a"};
		List<String> list = new ArrayList<>();
		list.add(array[0]);
		for(int i=1;i<array.length;i++){
			if(list.toString().indexOf(array[i]) == -1){
					list.add(array[i]);
			}
		}
		String[] arrayResult = (String[]) list.toArray(new String[list.size()]);
		System.out.println(Arrays.toString(arrayResult));
通过使用indexOf方法进行判断结果集中是否存在了数组元素。

3、方法三

		//数组去重方法三
		String[] array = {"a","b","c","c","d","e","e","e","a"};
		List<String> list = new ArrayList<>();
		for(int i=0;i<array.length;i++){
			for(int j=i+1;j<array.length;j++){
				if(array[i] == array[j]){
					j = ++i;
				}
			}
			list.add(array[i]);
		}
		String[] arrayResult = (String[]) list.toArray(new String[list.size()]);
		System.out.println(Arrays.toString(arrayResult));
嵌套循环,进行比较获取满足条件结果集。

4、方法四

		//数组去重方法四
		String[] array = {"a","b","c","c","d","e","e","e","a"};
		Arrays.sort(array);
		List<String> list = new ArrayList<>();
		list.add(array[0]);
		for(int i=1;i<array.length;i++){
			if(!array[i].equals(list.get(list.size()-1))){
				list.add(array[i]);
			}
		}
<pre name="code" class="java"><span style="white-space:pre">		</span>String[] arrayResult = (String[]) list.toArray(new String[list.size()]);
System.out.println(Arrays.toString(arrayResult));
 先使用java提供的数组排序方法进行排序,然后进行一层for循环,进行相邻数据的比较即可获得最终结果集。 
   

5、方法五

//数组去重方法五
		String[] array = {"a","b","c","c","d","e","e","e","a"};
		Set<String> set = new HashSet<>();
		for(int i=0;i<array.length;i++){
			set.add(array[i]);
		}
		String[] arrayResult = (String[]) set.toArray(new String[set.size()]);
		System.out.println(Arrays.toString(arrayResult));
感谢 漂泊一剑客  的提议,加入set方法进行添加,虽然是无序排列,但是也更方便的解决了去重的问题。

3、知识说明

1、ArrayList集合转数组

String[] arrayResult = (String[]) list.toArray(new String[list.size()]);

对应的java方法API

toArray

public Object[] toArray()
Returns an array containing all of the elements in this list in proper sequence (from first to last element).

The returned array will be "safe" in that no references to it are maintained by this list. (In other words, this method must allocate a new array). The caller is thus free to modify the returned array.

This method acts as bridge between array-based and collection-based APIs.

Specified by:
toArray in interface  Collection<E>
Specified by:
toArray in interface  List<E>
Overrides:
toArray in class  AbstractCollection<E>
Returns:
an array containing all of the elements in this list in proper sequence
See Also:
Arrays.asList(Object[])

toArray

public <T> T[] toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. If the list fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this list.

If the list fits in the specified array with room to spare (i.e., the array has more elements than the list), the element in the array immediately following the end of the collection is set to null. (This is useful in determining the length of the list only if the caller knows that the list does not contain any null elements.)

Specified by:
toArray in interface  Collection<E>
Specified by:
toArray in interface  List<E>
Overrides:
toArray in class  AbstractCollection<E>
Parameters:
a - the array into which the elements of the list are to be stored, if it is big enough; otherwise, a new array of the same runtime type is allocated for this purpose.
Returns:
an array containing the elements of the list
Throws:
ArrayStoreException - if the runtime type of the specified array is not a supertype of the runtime type of every element in this list
NullPointerException - if the specified array is null

2、数组直接打印到控制台


直接调用Arrays的toString方法进行转换再进行打印操作。
实例:
System.out.println(Arrays.toString(arrayResult));

4、总结


仅仅是根据自己想法进行总结,肯定还有更多更优的方法能够去实现,希望大神指出教导。

  • 41
    点赞
  • 170
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 8
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wenxuechaozhe

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值