编写一个程序,输出在顺序表(3,6,2,10,1,8,5,7,4,9)中采用顺序查找方法查找关键字5的过程 用c++描述
时间: 2024-03-20 12:45:04 浏览: 39
好的,以下是使用 C++ 语言描述顺序查找关键字 5 的过程:
```cpp
#include <iostream>
using namespace std;
int main() {
// 定义一个顺序表
int arr[] = {3, 6, 2, 10, 1, 8, 5, 7, 4, 9};
int n = sizeof(arr) / sizeof(arr[0]);
// 定义要查找的关键字
int key = 5;
// 顺序查找过程
bool found = false;
for (int i = 0; i < n; i++) {
if (arr[i] == key) {
found = true;
cout << "找到了关键字 " << key << ",位置为 " << i << endl;
break;
}
}
if (!found) {
cout << "未找到关键字 " << key << endl;
}
return 0;
}
```
输出结果为:
```
找到了关键字 5,位置为 6
```
阅读全文