| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 353 人关注过本帖
标题:求助。为什么这个程序运行不了?
取消只看楼主 加入收藏
shunyi999
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-2-24
结帖率:50%
收藏
已结贴  问题点数:20 回复次数:1 
求助。为什么这个程序运行不了?
#include <stdio.h>
#define maxsize 100
int list[maxsize];
int n;
/*insert in a seqlist*/
int sq_insert(int list[],int *p_n,int i,int x)
{
  int j;
  if(i<0||i>*p_n)
  return 1;
  if(*p_n>=maxsize)
  return 2;
  for(j=*p_n;j>=i;j--)
  list[j+1]=list[j];
  list[i]=x;
  (*p_n)++;
  return 0;
}

/*delete in a seqlist*/
int sq_delete( int list[],int *p_n,int i)
{
  int j;
  if(i<0||i>*p_n)
  return 1;
  for(j=i+1;j<=*p_n;j++)
  list[j-1]=list[j];
  (*p_n)-- ;
  return 0;
}



void main()
{
  int i,x,temp;
  printf("please input the number for n\n");
  printf("n=");
  scanf("%d",&n);
  for(i=0;i<=n;i++)
  {
    printf("list[%d]=",i);
    scanf("%d",&list[i]);
  }
  printf("the list before insertion is\n");
  for (i=0;i<=n;i++)
  printf("%d",list[i]);
  printf("\n");
  printf("please input the position where you want to insert a value\n position=");
  scanf("%d",&i);
  printf("please input the value you want to insert.\n x=");
  scanf("%d",&x);
  temp=sq_insert(list, &n, i, x);
  switch(temp)
  {
    case 0:printf("the insertion is  successful!\n");
           printf("the list after insertion is\n");
           for(i=0;i<=n;i++)
           printf("%d",list[i]);
           printf("\n");
           printf("the list's length is %d",n);
           break;
    case 1:
    case 2:printf("the insertion is not successful!\n");
           break;
   }
  temp=sq_delete( list,&n, i);
  switch(temp)
  {
    case 0:printf("the deletion is successful!\n");
           printf("the list after deletion is\n");
           for(i=0;i<=n;i++)
           printf("%d",list[i]);
           printf("the list's length is %d",n);
           break;
    case 1:printf("the deletion is not successful!\n");
           break;
  }
}

运行时,输入数组,长度和插入的数后,就结束了。这是怎么回事?
搜索更多相关主题的帖子: include return insert 
2012-05-12 20:08
shunyi999
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-2-24
收藏
得分:0 
回复 2楼 爱闹的娃
我发现了,是我的编译器有问题。不过删除操作那里的i确实有点问题,应该增加一个scanf("%d",&i).否则删除操作的时候,i永远为n+1。
2012-05-17 12:13
快速回复:求助。为什么这个程序运行不了?
数据加载中...
 
   



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

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