zoukankan      html  css  js  c++  java
  • 二分法快速查找的递归算法

            private static int find(int[] arySource, int target, int start, int end)
            {
                if (start == end)
                {
                    if (arySource[start] == target)
                    {
                        return start;
                    }
                    else
                    {
                        return -1;
                    }
                }
                else if (start > end)
                {
                    return -1;
                }

                int curIndex = -1;
                curIndex = (start + end) / 2;

                int middleValue = arySource[curIndex];
                if (target == middleValue)
                {
                    return curIndex;
                }
                else if (target < middleValue)
                {
                    return find(arySource, target, start,  curIndex - 1 );
                }
                else
                {
                    return find(arySource, target,  curIndex + 1, end);
                }
            }

  • 相关阅读:
    [POJ] 1979 Red and Black
    [Codeforces Round #192 (Div. 2)] D. Biridian Forest
    [Codeforces Round #192 (Div. 2)] B. Road Construction
    [Codeforces Round #192 (Div. 2)] A. Cakeminator
    430 vue组件命名方式: 短横线、驼峰
    429 vue脚手架
    428 webpack 使用步骤
    427 单页面应用,vue路由
    426 vue组件
    425 json-server,axios
  • 原文地址:https://www.cnblogs.com/darejoy/p/1745871.html
Copyright © 2011-2022 走看看