标题:将数字插入有序排放的数列
只看楼主
wxz11191975
Rank: 1
等 级:新手上路
帖 子:98
专家分:0
注 册:2011-6-20
结帖率:85.29%
 问题点数:0 回复次数:5 
将数字插入有序排放的数列
输入一个数到有序排放的数列中,插入后,数列仍然有序
#include <stdio.h>
#include <stdlib.h>

#define NUM 10

void insert(int *a,int x)
{int i,j=0;
 int *n;
 for(i=0;i<NUM; i++)
  { for(j=0;x<a[i];j++) j=i-1;}
 for(i=NUM;i>=j;j--)a[i+1]=a[i];
 a[j]=x;
 n[NUM+1]=a[i+1];
 }

void arrout(int a[],int n)
{int i;
for(i=0;i<n;i++) printf("%5d",a[i]);
printf("\n");
}

main()
{ int i,j,a[NUM]={21,34,44,56,67,78,89,90,911,912};
  int n[NUM+1];
  printf("output the primary numbers:\n");
  arrout(a,NUM);
  printf("input the inserted number:\n");
  scanf("%d",&j);
  printf("the number needed to insert is: %d\n",j);
  insert(a,j);
  printf("output the new nubmers:\n");
  arrout(n,NUM+1);
  system("PAUSE");   
  return 0;
}

折腾半天了,毛病出在insert那个函数里,compile可以过,但是程序执行到 insert那里不走。怎么改?  
搜索更多相关主题的帖子: 女孩 苹果 include insert 青春 
2011-07-03 17:08
hjywyj
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:3
帖 子:1114
专家分:2611
注 册:2010-4-14
得分:0 
程序代码:
#define NUM 10

void insert(int *a)
{int i,j=0,n;
for(i=0;i<=NUM;i++)
for(j=i;j<=NUM;j++)
if(*(a+i)>*(a+j))
{n=*(a+i);
*(a+i)=*(a+j);
*(a+j)=n;}
}

void arrout(int a[],int n)
{int i;
for(i=0;i<n;i++) printf("%5d",a[i]);
printf("\n");
}

main()
{ int i,j,a[NUM+1]={21,34,44,56,67,78,89,90,911,912};
  printf("output the primary numbers:\n");
  arrout(a,NUM);
  printf("input the inserted number:\n");
  scanf("%d",&a[NUM]);
  printf("the number needed to insert is: %d\n",j);
  insert(a);
  printf("output the new nubmers:\n");
  arrout(a,NUM+1);
  system("PAUSE");   
  return 0;
}
楼主参考一下!
2011-07-03 17:39
qldxsun
Rank: 4
等 级:业余侠客
帖 子:125
专家分:240
注 册:2011-6-4
得分:0 
回复 楼主 wxz11191975
你试一下把数组长度加大在数移动之后在末尾加结束符。
2011-07-03 21:09
wxz11191975
Rank: 1
等 级:新手上路
帖 子:98
专家分:0
注 册:2011-6-20
得分:0 
Thanks for all help!
2011-07-05 19:01
laoyang103
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:内蒙古包头
等 级:贵宾
威 望:19
帖 子:3082
专家分:11056
注 册:2010-5-22
得分:0 
直接插入排序

                                         
===========深入<----------------->浅出============
2011-07-05 19:36
博士无双
Rank: 2
等 级:论坛游民
帖 子:32
专家分:65
注 册:2011-7-5
得分:0 
for(i=NUM;i>=j;j--)a[i+1]=a[i];
a[NUM]和a[NUM+1]都不存在,要增加数字长度
2011-07-05 21:56



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-344600-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.484441 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved