1 Star 1 Fork 1

xcc/structures-and-algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SeqSearch.java 787 Bytes
一键复制 编辑 原始数据 按行查看 历史
xcc 提交于 2020-12-14 20:34 . 修改包名
package com.xcc.dataStructures.demo07_search;
/**
* 线性查找
*/
public class SeqSearch {
public static void main(String[] args) {
int[] arr = { 1, 2, 8, 4, 5 };// 没有顺序的数组
int index = seqSearch(arr, 8);
if (index == -1) {
System.out.println("没有找到到");
} else {
System.out.println("找到,下标为=" + index);
}
}
/**
* 线性查找找到一个满足条件的值就返回
*/
public static int seqSearch(int[] arr, int value) {
// 线性查找是逐一比对,发现有相同值,就返回下标
for (int i = 0; i < arr.length; i++) {
if (arr[i] == value) {
return i;
}
}
return -1;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaocheng0902/structures-and-algorithm.git
git@gitee.com:xiaocheng0902/structures-and-algorithm.git
xiaocheng0902
structures-and-algorithm
structures-and-algorithm
master

搜索帮助