fork download
  1. #include <iostream>
  2. #include <array>
  3. using namespace std;
  4.  
  5. int linearSearch(int arr[], int target, int n)
  6. {
  7. for( int i = 0; i < n; i++ ) {
  8. if ( arr[i] == target) {
  9. return i;
  10. }
  11. }
  12. return -1;
  13. }
  14.  
  15. int main()
  16. {
  17. int n,target;
  18. cin >> n >> target;
  19. int a[n];
  20. for(int i = 0;i<n;i++){
  21. cin >> a[i];
  22. }
  23.  
  24. int res = linearSearch(a, target, n);
  25. cout << "The result of linear search = " << res << endl;
  26. return 0;
  27. }
Success #stdin #stdout 0.01s 5288KB
stdin
6 5
1 2 3 4 5
stdout
The result of linear search = 4