# 查找算法 **Repository Path**: wkq-algorithm-library/search-algorithm ## Basic Information - **Project Name**: 查找算法 - **Description**: 线性查找法、二分查找法...... - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-09 - **Last Updated**: 2022-03-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 查找算法 #### 介绍 * 线性查找法 思路:在一个线性的数据结构中一个一个的寻找 输入:数组,和目标元素 输出:目标元素所在的索引;若不存在,返回-1 * 二分查找法......