1124: 查找例题

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:105 Solved:47

Description

给定数组E[N]={213,111,222,77,400,300,987,1024,632,555}
执行以下操作:
(1)调用无序线性表的顺序查找函数进行查找;
(2)调用有序线性表的顺序查找函数进行查找;
(3)调用二分法查找函数进行查找。


Sample Input Copy

222
222
1025

Sample Output Copy

3
4
找不到