博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#版二分查找(代碼)
阅读量:5771 次
发布时间:2019-06-18

本文共 1313 字,大约阅读时间需要 4 分钟。

  hot3.png

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BinaryAlgorithm
{
    public class Program
    {
        static void Main(string[] args)
        {
            //int[] arr = new int[] { 1, 5, 13, 6, 10, 55, 99, 2, 87, 12, 34, 75, 33, 47, 45 };
            int[] arr = new int[] { 1};
            SelectionSorter.Sort(arr);
            Console.WriteLine("Please input target number!");
            int target = Convert.ToInt32(Console.ReadLine());
            int index = BinaryAlgorithmI.Sort(arr, target);
            if (index == -1)
                Console.WriteLine("Target number is out of array!");
            else
                Console.WriteLine("Target number is at " + index);
            Console.ReadKey();
        }
    }
    /// <summary>
    /// 二分算法
    /// </summary>
    public class BinaryAlgorithmI
    {
        public static int Sort(int[] arr, int searchNum)
        {
            int result = -1;
            int low = 0;
            int high = arr.Length - 1;
            while (low <= high)
            {
                int mid = (low + high) / 2;
                if (searchNum == arr[mid])
                {
                    return ++mid;
                }
                else if (searchNum < arr[mid])
                {
                    high = mid - 1;
                }
                else
                {
                    low = mid + 1;
                }
            }
            return result;
        }
    }
    /// <summary>
    /// 冒泡算法
    /// </summary>
    public class SelectionSorter
    {
        public static void Sort(int[] arr)
        {
            int count = arr.Length;
            for (int i = 0; i < count - 1; i++)
            {
                for (int j = i + 1; j < count; j++)
                {
                    if (arr[j] < arr[i])
                    {
                        int temp = arr[j];
                        arr[j] = arr[i];
                        arr[i] = temp;
                    }
                }
            }
        }
    }
}

转载于:https://my.oschina.net/gaowch/blog/122372

你可能感兴趣的文章
多种方式实现ul中的li居中的利弊
查看>>
mac安装brew和nginx
查看>>
UIButton
查看>>
Android获取各种设备的状态
查看>>
区块链开发_以太坊测试功能
查看>>
CodeChef November Challenge 2013 解题报告
查看>>
[改善Java代码]不推荐覆写start方法
查看>>
JDK中ConcurrentHashMap效率测试
查看>>
UTF-8的BOM含义
查看>>
qgis自定义坐标系与qgis.db问题
查看>>
98. Validate Binary Search Tree - Medium
查看>>
2440A 裸机(Jlink V8+驱动4.9+MDK4.9)总结
查看>>
编写第一个Servlet程序
查看>>
痞子衡嵌入式:串口调试工具Jays-PyCOM诞生记(1)- 环境搭建(Python2.7.14 + pySerial3.4 + wxPython4.0.3)...
查看>>
搭建httpd服务
查看>>
使用sort()时的一点注意
查看>>
11、ViewModelLocator-Prism的MVVM一血
查看>>
SQLite 入门教程(一)基本控制台(终端)命令 (转)
查看>>
[Usaco2006 Dec]Wormholes
查看>>
window编译caffe总结
查看>>