项目作者: iasjem

项目描述 :
Demonstrates how a linear search algorithm works
高级语言: Java
项目地址: git://github.com/iasjem/linear-search-algorithm-java.git
创建时间: 2018-03-05T06:24:08Z
项目社区:https://github.com/iasjem/linear-search-algorithm-java

开源协议:MIT License

下载


Linear Search Algorithm (Java version)

Linear Search Algorithm

  • Demonstrates how a linear search algorithm works
  • The search algorithm starts from the leftmost of the array and then compare the value to be searched to each elements in the array
  • If there is no match, it should return -1. Otherwise, return the index of that array
  • Created to simply practice coding in Java

Created by IasJem