码迷,mamicode.com
首页 > 编程语言 > 详细

数组应用之————二分法查找

时间:2015-08-10 21:55:35      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _99
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] dns = new int[] { 3, 8, 9, 10, 16, 28, 36, 42, 58, 79, 98, 99 };
            Console.Write("输入你要查找的数");
            int n = Convert.ToInt32(Console.ReadLine());

            int top, bottom, mid;
            top = 0;

            bottom = dns.Length - 1;
            while (bottom>=top )
            {
                mid = (top + bottom) / 2;
                int k = dns[mid];
                if (k < n) 
                {
                    top = mid + 1;
                }
                else if (k > n) 
                {
                bottom=mid-1;
                }else
                {
                    Console .WriteLine ("你找的值在"+mid+"位置");
                    break;              
                }
                Console.ReadLine();
            }

           
        }
    }
}

 

数组应用之————二分法查找

标签:

原文地址:http://www.cnblogs.com/ROCKyou/p/4719276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!