赞
踩
数据结构实验之链表六:有序链表的建立
Time Limit: 1000 ms Memory Limit: 65536 KiB
Problem Description
输入N个无序的整数,建立一个有序链表,链表中的结点按照数值非降序排列,输出该有序链表。
Input
第一行输入整数个数N;
第二行输入N个无序的整数。
Output
依次输出有序链表的结点值。
Sample Input
6
33 6 22 9 44 5
Sample Output
5 6 9 22 33 44
Hint
不得使用数组!
**提示:**顺序建链表时涉及排序,可用两个while循环对链表进行排序
AC代码:
#include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *next; } node; int main() { int n,x,t; node *head,*p,*q; head=(node *)malloc(sizeof(node)); head->next=NULL; q=head; scanf("%d",&n); while(n--)//顺序建链表 { scanf("%d",&x); p=(node *)malloc(sizeof(node)); p->data=x; p->next=NULL; q->next=p; q=p; } q=head->next; while(q)//排序 { p=q->next; while(p) { if(p->data<q->data) { t=p->data; p->data=q->data; q->data=t; } p=p->next; } q=q->next; } p=head->next; while(p) { if(p->next==NULL) printf("%d\n",p->data); else printf("%d ",p->data); p=p->next; } return 0; }
余生还请多多指教!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。