比顺序查找设置哨兵还有趣的算法

利用哨兵来进行顺序查找时令人眼前一亮的

利用捕捉异常进行顺序查找:

  public void name1() {
        List<Integer> list = ListUtil.<Integer>init(1, 323, 432, 3433, 4);
        int find = 3;
        int i = 0;
        try {
            while (true) {
                if (list.get(i) == find) {
                    break;
                }
                i++;
            }
            log.info("index:" + i);
        } catch (IndexOutOfBoundsException e) {
            log.info("不存在");
        }
    }

 

    原文作者:查找算法
    原文地址: https://blog.csdn.net/qq_34921794/article/details/81360666
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞