Problem1985--链式表的按序号查找

1985: 链式表的按序号查找

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

本题要求实现一个函数,找到并返回链式表的第K个元素。 函数接口定义: ElementType FindKth( List L, int K ); 其中List结构定义如下: typedef struct LNode *PtrToLNode; struct LNode { ElementType Data; PtrToLNode Next; }; typedef PtrToLNode List; L是给定单链表,函数FindKth要返回链式表的第K个元素。如果该元素不存在,则返回ERROR。 裁判测试程序样例: #include #include #define ERROR -1 typedef int ElementType; typedef struct LNode *PtrToLNode; struct LNode { ElementType Data; PtrToLNode Next; }; typedef PtrToLNode List; List Read();

Input

L是给定单链表

Output

函数FindKth要返回链式表的第K个元素。如果该元素不存在,则返回ERROR

Sample Input Copy

1 3 4 5 2 -1
6
3 6 1 5 4 2

Sample Output Copy

4 NA 1 2 5 3

Source/Category

99