Friday, August 10, 2012

Linear Search


Linear Search
Output
Linear Search List
44 index  position 7

Source code
package com.swain.cell;

public class LinearSearch {
       public static void main(String[] args)
       {
              System.out.println("Linear Search List");
             
              int[] arr = {0,2879, 15, 29, 78, 26, 24, 44, 167, 13,24,47};
             
              int i;       
              int num = 44;
              boolean flag=false;
             
              for(i=0; i<arr.length; i++){
                     if(arr[i]==num){
                           flag=true;
                           break;
                     }
                    
              }//for
             
              if(flag){
                     System.out.println(num + " index  position "+i);
              }
              else{
                     System.out.println(num + " no not found");
              }
             
       }     

}

No comments:

Post a Comment

How ChatGPT can Benefit Coding: Your Guide to Leveraging an AI Language Model

 Introduction: Hello, coders! Welcome to this blog post on how ChatGPT, an AI language model, can benefit your coding skills and projects. A...