-->
当前位置:首页 > 题库

PROGRAMMING:Creation and traversal of single linked list

Luz5年前 (2021-05-10)题库403
Read in n values and N integers, build a single linked list and traverse the output.
###Input format:
Read in N and N integers.
###Output format:
Output n integers separated by spaces (there is no space after the last number).
###Input example:
Here is a set of inputs. For example:
```in
two
10 5
```
###Output example:
The corresponding output is given here. For example:
```out
10 5
```







answer:If there is no answer, please comment