- #include<iostream>
- using namespace std;
- struct Node{int data; Node * next;};
- void Create(Node *&head);
- void ShowList(Node *head);
- void main()
- { Node *head=new Node;
- head=NULL;
- cout<<"输入链表元素,以输入 0 结束:\n";
- Create(head);
- cout<<"输出逆向链表\n";
- ShowList(head);
- }