fig04_19.cpp
来自「经典vc教程的例子程序」· C++ 代码 · 共 37 行
CPP
37 行
// Fig. 4.19: fig04_19.cpp
// Linear search of an array
#include <iostream.h>
int linearSearch( const int [], int, int );
int main()
{
const int arraySize = 100;
int a[ arraySize ], searchKey, element;
for ( int x = 0; x < arraySize; x++ ) // create some data
a[ x ] = 2 * x;
cout << "Enter integer search key:" << endl;
cin >> searchKey;
element = linearSearch( a, searchKey, arraySize );
if ( element != -1 )
cout << "Found value in element " << element << endl;
else
cout << "Value not found" << endl;
return 0;
}
int linearSearch( const int array[], int key, int sizeOfArray )
{
for ( int n = 0; n < sizeOfArray; n++ )
if ( array[ n ] == key )
return n;
return -1;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?