博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
算法(二):查找
阅读量:5294 次
发布时间:2019-06-14

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

一 、 线性查找(顺序查找)

public class LSearch {

public static int[] Data = { 12, 76, 29, 22, 15, 62, 29, 58, 35, 67,
58, 33, 28, 89, 90, 28, 64, 48, 20, 77 }; // 输入数据数组

public static int Counter = 1; // 查找次数计数变量

public static void main(String args[]) {

int KeyValue = 22;

// 调用线性查找
if (Linear_Search((int) KeyValue)) {
// 输出查找次数
System.out.println("");
System.out.println("Search Time = " + (int) Counter);
} else {
// 输出没有找到数据
System.out.println("");
System.out.println("No Found!!");
}
}

// ---------------------------------------------------

// 顺序查找
// ---------------------------------------------------
public static boolean Linear_Search(int Key) {
int i; // 数据索引计数变量

for (i = 0; i < 20; i++) {

// 输出数据
System.out.print("[" + (int) Data[i] + "]");
// 查找到数据时
if ((int) Key == (int) Data[i])
return true; // 传回true
Counter++; // 计数器递增
}
return false; // 传回false
}
}

 

二 、二分查找折半查找

public class BSearch {

public static int Max = 20;
public static int[] Data = { 12, 16, 19, 22, 25, 32, 39, 48, 55, 57,
58, 63, 68, 69, 70, 78, 84, 88, 90, 97 }; // 数据数组
public static int Counter = 1; // 计数器

public static void main(String args[]) {

int KeyValue = 22;
// 调用折半查找
if (BinarySearch((int) KeyValue)) {
// 输出查找次数
System.out.println("");
System.out.println("Search Time = " + (int) Counter);
} else {
// 输出没有找到数据
System.out.println("");
System.out.println("No Found!!");
}
}

// ---------------------------------------------------

// 折半查找法
// ---------------------------------------------------
public static boolean BinarySearch(int KeyValue) {
int Left; // 左边界变量
int Right; // 右边界变量
int Middle; // 中位数变量

Left = 0;

Right = Max - 1;

while (Left <= Right) {

Middle = (Left + Right) / 2;
if (KeyValue < Data[Middle]) // 欲查找值较小
Right = Middle - 1; // 查找前半段
// 欲查找值较大
else if (KeyValue > Data[Middle])
Left = Middle + 1; // 查找后半段
// 查找到数据
else if (KeyValue == Data[Middle]) {
System.out
.println("Data[" + Middle + "] = " + Data[Middle]);
return true;
}
Counter++;
}
return false;
}
}

 

转载于:https://www.cnblogs.com/wytiger/p/5341271.html

你可能感兴趣的文章
CSS
查看>>
shell 管道和tee使用时获取前面命令返回值
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
[TypeScript] Understanding Generics with RxJS
查看>>
一、基础篇--1.3进程和线程-基本概念
查看>>
Linux kernel ‘ioapic_read_indirect’函数拒绝服务漏洞
查看>>
WordPress GRAND FlAGallery插件“s”跨站脚本漏洞
查看>>
zoj3690 Choosing number
查看>>
阳宇宸:网站开发的常用语言
查看>>
CF 600 E 启发式合并
查看>>
保险配置
查看>>
【高并发解决方案】2、集群概述
查看>>
Mysql-SqlServer区别
查看>>
Windows Phone锁屏背景相关代码
查看>>
Linux - mkdir -p a/b/c
查看>>
Maven安装详细图文教程
查看>>
eclipse中启动tomcat报错 java.lang.ClassNotFoundException
查看>>
转:【专题十一】实现一个基于FTP协议的程序——文件上传下载器
查看>>
异常处理
查看>>