1792: 【C++】线性链表的建立及逆序输出
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:9
Solved:7
Description
输入一个正整数序列,遇负数时停止,建立一个线性链表存储读入的数据,将各个元素按逆序输出。
Sample Input Copy
1 2 3 4 5 -1
Sample Output Copy
5 4 3 2 1