博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
快速的判断两个字符串型数组是否有交集
阅读量:6389 次
发布时间:2019-06-23

本文共 3955 字,大约阅读时间需要 13 分钟。

hot3.png

■[面试题]如何快速的判断两个数组是否有交集

public boolean hasIntersection(String[] array1, String[] array2) {

     ...

}

array1中,只要有一个在array2中,存在,就返回true,否则返回false

求最快的方法

原帖:

■代码

--------------------------------------------------------------------------------

package javay.test;

import java.util.Arrays;

import java.util.HashMap;

import java.util.PriorityQueue;

import java.util.TreeMap;

public class TestIntersection {

    public boolean hasIntersectionByHashMap(String[] array1, String[] array2) {

        HashMap<String, String> map = new HashMap<String, String>();

        for(String str : array2) {

            map.put(str, str);

        }

        for (String str : array1) {

            if (map.get(str) != null) {

                return true;

            }

        }

        return false;

    }

    public boolean hasIntersectionByTreeMap(String[] array1, String[] array2) {

        TreeMap<String, String> map = new TreeMap<String, String>();

        for(String str : array2) {

            map.put(str, str);

        }

        for (String str : array1) {

            if (map.get(str) != null) {

                return true;

            }

        }

        return false;

    }

    public boolean hasIntersectionByIndexOf(String[] array1, String[] array2) {

        String map = Arrays.toString(array2);

        for (String str : array1) {

            if (map.indexOf(str) > -1) {

                return true;

            }

        }

        return false;

    }

    public boolean hasIntersectionBySortBS(String[] array1, String[] array2) {

        Arrays.sort(array2);

        for (String str : array1) {

            if (Arrays.binarySearch(array2, str) > -1) {

                return true;

            }

        }

        return false;

    }

    public boolean hasIntersectionByPQueue(String[] array1, String[] array2) {

        PriorityQueue<String> queue = new PriorityQueue<String>(array2.length);

        for(String str : array2) {

            queue.offer(str);

        }

        for (String str : array1) {

            if (queue.contains(str)) {

                return true;

            }

        }

        return false;

    }

    public static void main(String[] args) {

        int nMax = 4000000;

        String[] b = new String[nMax];

        for (int i = 0; i < nMax ; i ++) {

            b[i] = String.valueOf(i);

        }

        String[] t = new String[1];

        t[0] = String.valueOf(nMax - 1) + "x";

        TestIntersection proc = new TestIntersection();

        long a = System.currentTimeMillis();

        System.out.println("HashMap:" + proc.hasIntersectionByHashMap(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("TreeMap:" + proc.hasIntersectionByTreeMap(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("IndexOf:" + proc.hasIntersectionByIndexOf(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("PQueue :" + proc.hasIntersectionByPQueue(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("SortBS :" + proc.hasIntersectionBySortBS(t, b) + "," + (System.currentTimeMillis() - a));

        for (int i = (nMax - 1); i >= 0 ; i --) {

            b[nMax - i - 1] = String.valueOf(i);

        }

        System.out.println();

        a = System.currentTimeMillis();

        System.out.println("HashMap:" + proc.hasIntersectionByHashMap(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("TreeMap:" + proc.hasIntersectionByTreeMap(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("IndexOf:" + proc.hasIntersectionByIndexOf(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("PQueue :" + proc.hasIntersectionByPQueue(t, b) + "," + (System.currentTimeMillis() - a));

        a = System.currentTimeMillis();

        System.out.println("SortBS :" + proc.hasIntersectionBySortBS(t, b) + "," + (System.currentTimeMillis() - a));

    }

}

--------------------------------------------------------------------------------

■测试结果

HashMap:false,4744

TreeMap:false,7159

IndexOf:false,875

PQueue :false,499

SortBS :false,469★

HashMap:false,6326

TreeMap:false,4666

IndexOf:false,495

PQueue :false,453

SortBS :false,421★

但也有例外的结果。

HashMap:false,4635

TreeMap:false,7257

IndexOf:false,859

PQueue :false,468★

SortBS :false,484

HashMap:false,6344

TreeMap:false,4712

IndexOf:false,588

PQueue :false,437

SortBS :false,417★

转载于:https://my.oschina.net/dubenju/blog/473698

你可能感兴趣的文章
两个关于数列的Python脚本(斐波那契数列和猴子吃香蕉类问题)
查看>>
olabuy-时光从来素默,内心应保持一份素淡与简静
查看>>
kux文件怎么打开 苹果手机如何观看kux视频
查看>>
Python中的urllib.request模块
查看>>
第九课 《说人话》
查看>>
js对象数组排序
查看>>
如何实现在展示商品时,放大商品细节
查看>>
uboot boot流程分析
查看>>
如何学习PHP整个体系的?
查看>>
css三角形实现写法全攻略收集
查看>>
Enterprise and the press public MBT Fora
查看>>
js常用代码整理
查看>>
富文本编辑器TinyMCE
查看>>
01_vue实例_数据_方法
查看>>
“穿越”——正则表达式
查看>>
使用 find 命令实现高级排除需求
查看>>
【DEV GridControl】怎样使GridView中满足某个条件的行可编辑,其余行不可编辑?...
查看>>
一只年轻而倒悬的梨
查看>>
解决time_wait过多的问题
查看>>
技术转载:Jni学习一:了解Jni
查看>>