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

数据结构和算法 – 2.基础查找算法

时间:2016-04-04 06:46:21      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

1.顺序查找

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

namespace 数据结构和算法
{
    class _2
    {
        public readonly static int[] arrayList = new int[] { 312, 564, 1254, 145, 212, 884, 145, 1212, 443, 56, 222 };

        static void Main()
        {
            int[] numbers = new int[100];
            for (int i = 0; i < arrayList.Length; i++)
            {
                numbers[i] = arrayList[i];
            }

            int searchNumber;
            Console.WriteLine("输入一个数字:");
            searchNumber = int.Parse(Console.ReadLine());

            bool found;
            found = seqSerch(numbers, searchNumber);
            if (found)
            {
                Console.WriteLine(searchNumber +"找到了!");
            }
            else
            {
                Console.WriteLine(searchNumber + "没有在数组中!");
            }
            Console.ReadKey();
        }
        static bool seqSerch(int[] arr, int sValue)
        {
            for (int i = 0; i < arr.Length; i++)
            {
                if (arr[i] == sValue)
                {
                    return true;
                }
            }
            return false;
        }
    }
}

技术分享

2.二叉查找

3.递归二叉查找

数据结构和算法 – 2.基础查找算法

标签:

原文地址:http://www.cnblogs.com/tangge/p/5351291.html

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