1849: 【C++】线性链表的查找(2)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:6 Solved:5

Description

输入一个正整数序列,遇负数时停止,建立一个线性链表存储读入的数据。然后对链表进行查询,从键盘读入一系列的数,表示索引,查找指定索引的数据,碰到负数停止。如果不存在的索引,则输出‘No found’。

Input

第一行输入多个数,以负数结尾。
多行,表示查询的索引,负数结尾。

Output

输出查询结果。

Sample Input Copy

11 22 33 44 55 -1
3
4
5
-1

Sample Output Copy

44
55
No found