鱼C论坛

 找回密码
 立即注册
查看: 3914|回复: 1

运行这个C#写的二分法查找导致栈溢出了

[复制链接]
发表于 2017-10-10 21:03:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace task4
{
    class Program
    {//二分法递归
        List<int> l = new List<int>();
       
        public int BinarySearch(List<int> l,int start,int end,int x)
        {  
            if (start <= end)
            {
                if (l.Count == 0)
                    return -1;
                int mid = l.Count / 2;
                if (l[mid] == x)
                    return mid;
                else if (x < l[mid])
                    return BinarySearch(l, start, mid - 1, x);
                else
                {
                    return BinarySearch(l, mid + 1, end, x);
                }
            }
            return -1;
           
               
        }
       
        static void Main(string[] args)
        {
            Program pro = new Program();
            int[] sortedData = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
            for (int i = 0; i < sortedData.Length; i++)
            {
                pro.l.Add(sortedData[i]);
            }

            int length = pro.l.Count();
            int key = 5;
                int value =pro.BinarySearch(pro.l, 0, length - 1, key);
                Console.WriteLine("found in pos"+value);
           
        }
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-10-11 14:17:21 | 显示全部楼层
单步调试下就能知道错误在哪
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 03:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表