📄 pr0606.cpp
字号:
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.6 on page 143
// Implementing the reverse Linear Search algorithm
#include <iostream>
using namespace std;
int index(int x, int a[], int n);
// if a[i] == x for some i in the range 0 <= i < n,
// then the largest such i is returned;
// otherwise n is returned;
int main()
{ // tests the index() function:
int a[] = { 22, 44, 66, 88, 44, 66, 55 };
cout << "index(44,a,7) = " << index(44,a,7) << endl;
cout << "index(50,a,7) = " << index(50,a,7) << endl;
}
int index(int x, int a[], int n)
{ // linear search:
for (int i=n-1; i>=0; i--)
if (a[i] == x) return i;
return n;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -