NodeJS实现线性查找算法
以下是使用 Node.js 实现线性搜索算法的示例代码:
function linearSearch(arr, target) {for (let i = 0; i < arr.length; i++) {if (arr[i] === target) {return i; // 如果找到目标,返回索引}}return -1; // 如果未找到目标,返回-1
}// 示例用法
const array = [5, 3, 6, 2, 10, 8];
const target = 6;
const index = linearSearch(array, target);
if (index !== -1) {console.log(`目标 ${target} 在数组中的索引是:${index}`);
} else {console.log(`目标 ${target} 未在数组中找到`);
}
这个函数接受一个数组和一个目标值作为参数,并在数组中搜索该目标值。如果找到目标值,则返回其在数组中的索引,否则返回 -1。