标签:des style blog io os sp for 数据 div
10 11 3 5 27 9 12 43 16 84 22
22 84 16 43 12 9 27 5 3 11
比顺序创建链表还要简单!
#include <iostream> #include <string> #include <string.h> #include <stdio.h> #include <algorithm> #include <algorithm> using namespace std; struct node { int data; struct node *next; }; int main() { int n; int i, j; struct node *head; head= new struct node; head->next=NULL; struct node *p; cin>>n; for(i=0; i<n; i++) { p=new struct node; scanf("%d", &p->data ); p->next=head->next; head->next=p; } for(j=0; j<n; j++) { if(j==0) cout<<head->next->data; else cout<<" "<<head->next->data; head=head->next; } cout<<endl; return 0; }
标签:des style blog io os sp for 数据 div
原文地址:http://www.cnblogs.com/yspworld/p/4089899.html