题目描述
输入
第二行输入n个整数。
输出
第二行输出按照逆位序所建立的初始链表;
第三行输出删除重复元素后的单链表元素个数;
第四行输出删除重复元素后的单链表。
示例输入
10 21 30 14 55 32 63 11 30 55 30
示例输出
10 30 55 30 11 63 32 55 14 30 21 730 55 11 63 32 14 21
#include <iostream> #include<bits/stdc++.h> using namespace std; struct node { int data; node *next; }; struct node *create(int n) { int i; node *head,*p; head=new node; head->next=NULL; for(i=0;i<n;i++) { p=new node; scanf("%d",&p->data); p->next=head->next; head->next=p; } return (head); }; void print(struct node *p) { struct node *h=p->next; while(h!=NULL) { if(h->next==NULL) printf("%d",h->data); else printf("%d ",h->data); h=h->next; } } void num(node *head) { int i=0; node *p=head->next; while(p) { i++; p=p->next; } printf("%d\n",i); } void del(node *p)//删除重复元素; { node *h; h=p->next; node *q,*t; while(h) { q=h; while(q->next) { if(h->data==q->next->data) { t=q->next; q->next=t->next; free(t); } else q=q->next; } h=h->next; } } int main() { int n; scanf("%d",&n); node *p=create(n); num(p); print(p); printf("\n"); del(p); num(p); print(p); return 0; }