Ya no busques más por todo internet porque has llegado al sitio necesario, poseemos la respuesta que buscas pero sin problemas.
Ejemplo: búsqueda lineal en java
publicclassLinearSearchExample// here function returns index of element x in arrLinearstaticintsearchNumber(int[] arrLinear,int key)int num = arrLinear.length;for(int a =0; a < num; a++)// here we are returning the index of the element if foundif(arrLinear[a]== key)return a;// here we are returning -1 if element is not foundreturn-1;publicstaticvoidmain(String[] args)int[] arrLinear =15,25,35,55,75,95;int key =55;int output =searchNumber(arrLinear, key);if(output ==-1)System.out.println("Sorry!!Element is not present");elseSystem.out.println("Element is present at index "+ output);
Comentarios y puntuaciones del tutorial
Recuerda recomendar este escrito si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)