折半查找(C#数据结构学习六)

 1 None.gif using  System;
 2 None.gif using  System.Collections.Generic;
 3 None.gif using  System.Text;
 4 None.gif
 5 None.gif namespace  SoloDataStructure
 6 ExpandedBlockStart.gifContractedBlock.gif dot.gif {
 7InBlock.gif   
 8InBlock.gif   public class BinschDemo
 9ExpandedSubBlockStart.gifContractedSubBlock.gif    dot.gif{
10InBlock.gif        public static int Binsch(int[] a,int key)
11ExpandedSubBlockStart.gifContractedSubBlock.gif        dot.gif{
12InBlock.gif            int low = 1;
13InBlock.gif            int high = a.Length;
14InBlock.gif            while (low <= high)
15ExpandedSubBlockStart.gifContractedSubBlock.gif            dot.gif{
16InBlock.gif                int mid=(low+high)/2;
17InBlock.gif                if (key == a[mid])
18ExpandedSubBlockStart.gifContractedSubBlock.gif                dot.gif{
19InBlock.gif                    return mid;  //返回找到的索引值
20ExpandedSubBlockEnd.gif                }

21InBlock.gif                else
22ExpandedSubBlockStart.gifContractedSubBlock.gif                dot.gif{
23InBlock.gif                    if (key < a[mid])
24InBlock.gif                        high = mid - 1;
25InBlock.gif                    else
26InBlock.gif                        low = mid + 1;
27ExpandedSubBlockEnd.gif                }

28ExpandedSubBlockEnd.gif            }

29InBlock.gif            return 0//查找失败
30InBlock.gif
31InBlock.gif 
32ExpandedSubBlockEnd.gif        }

33InBlock.gif        static void Main(string[] args)
34ExpandedSubBlockStart.gifContractedSubBlock.gif        dot.gif{
35InBlock.gif         
36InBlock.gif            int[] list=new int[10];
37InBlock.gif            for (int i = 0; i < 10; i++)
38ExpandedSubBlockStart.gifContractedSubBlock.gif            dot.gif{
39InBlock.gif                Console.Write("input 10 number,here is the{0}th number :",i);
40InBlock.gif                list[i] =Convert.ToInt32(Console.ReadLine());
41ExpandedSubBlockEnd.gif            }

42InBlock.gif            
43InBlock.gif            Console.Write("Ok!Find a number in the list:");
44InBlock.gif            int find = Console.Read();
45InBlock.gif            int result = Binsch(list,find);
46InBlock.gif            Console.WriteLine(result);
47InBlock.gif            Console.ReadLine();
48InBlock.gif
49ExpandedSubBlockEnd.gif        }

50ExpandedSubBlockEnd.gif    }

51ExpandedBlockEnd.gif}

转载于:https://www.cnblogs.com/solo/archive/2006/12/21/599648.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值