9 lines
213 B
C++
9 lines
213 B
C++
// 编写一个程序,输出在顺序表(1,2, 3, 4, 5, 6, 7, 8, 9, 10)中采用折半查找方法查找关键字9的过程。
|
|
#include<iostream>
|
|
#include<list>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
return 0;
|
|
} |