免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1721 | 回复: 8
打印 上一主题 下一主题

高手请入 !!帮忙看看这个程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-11-12 23:29 |只看该作者 |倒序浏览
请教高手啊,先谢谢啦。
   是想用 “栈”做一个可以转换数的进制的程序,但是却老是提示“内存错误”。程序如下:
#include<iostream.h>
#define MAXSIZE  100
typedef struct
{
  int data[MAXSIZE];
  int top;
}SeqStack;
int Init_SeqStack(SeqStack **s )
{
  if((*s)=new(SeqStack))return 0;
  (*s)->top=-1;
  return 1;
}
int Empty_SeqStack(SeqStack *s)
{
if(s->top==-1)
  return 1;
else return 0;
}
int Push_SeqStack(SeqStack **s,int x)
{
  if ((*s)->top==MAXSIZE-1)
   return 0;
  else
  {
   (*s)->data[++(*s)->top]=x;
   return 1;
  }
}
int Pop_SeqStack(SeqStack **s,int *x)
{
  if (Empty_SeqStack(*s))
   return 0;
  else
  {
   *x=(*s)->data[(*s)->top--];
   return 1;
  }
}
int Top_SeqStack(SeqStack *s)
{
if(Empty_SeqStack(s))
  return 0;
else
  return (s->data[s->top]);
}
void conversion(double N,int r)
{
  double n;
  int M,x,y;
  SeqStack *S,*P,*Q;
  Init_SeqStack(&S);
  Init_SeqStack(&P);
  Init_SeqStack(&Q);
  M=N/1;
  n=N-M;
  while(M)
  {
   Push_SeqStack(&S,M%r);
   M=M/r;
  }
  while(n)
  {
   int m;
   m=n*r;
   Push_SeqStack(&Q,m);
   n=n*r;
   if(n>1)
    n=n-1;
  }
while(Empty_SeqStack(S))
   Pop_SeqStack(&S,&x);
  while(Empty_SeqStack(Q))
  {
   Pop_SeqStack(&Q,&y);
   Push_SeqStack(&P,y);
   Pop_SeqStack(&P,&y);
   cout<<x<<y<<endl;
  }
}
void main()
{
  double N;
  int r;
  cout<<"请输入要转化为几进制,及要转化的数:"<<endl;
  cin>>N>>r;
  cout<<"转化后的数应为:"<<endl;
  conversion(N,r);
}


多谢啊!!

论坛徽章:
0
2 [报告]
发表于 2008-11-12 23:37 |只看该作者
都知道是内存错误了,那就是内存访问违规了,看看是不是使用了NULL指针

自己定位错误的地方先

论坛徽章:
0
3 [报告]
发表于 2008-11-12 23:52 |只看该作者
conversion函数改成下面这样。
main中的进制和数字搞反了
没处理像16进制那样的字符,比如 f 的话输出是 15

  1. void conversion(double N,int r)
  2. {
  3.   double n;
  4.   int M,x;
  5.   SeqStack *S,*P,*Q;
  6.   Init_SeqStack(&S);
  7.   Init_SeqStack(&P);
  8.   Init_SeqStack(&Q);
  9.   M=N;
  10.   n=M;
  11.   while(M)
  12.   {
  13.    Push_SeqStack(&S,M%r);
  14.    M=M/r;
  15.   }
  16.   
  17. while(!Empty_SeqStack(S))
  18. {
  19.         Pop_SeqStack(&S,&x);
  20.         cout<<x<<" ";
  21. }
复制代码

论坛徽章:
0
4 [报告]
发表于 2008-11-13 00:27 |只看该作者

回复 #3 bert1984 的帖子

你说的这个已经试过了,但,还是提示内存错误啊。

论坛徽章:
1
技术图书徽章
日期:2014-03-06 15:32:30
5 [报告]
发表于 2008-11-13 12:48 |只看该作者
上 gdb 调试

论坛徽章:
0
6 [报告]
发表于 2008-11-13 15:10 |只看该作者
原帖由 crazy4444 于 2008-11-13 00:27 发表
你说的这个已经试过了,但,还是提示内存错误啊。

晕,我试了没错误。 比如100 ,8,显示8进制144;
   100,16; 显示16进制64

论坛徽章:
0
7 [报告]
发表于 2008-11-13 22:02 |只看该作者
怎么我试的时候就是 内存错误啊

论坛徽章:
3
天蝎座
日期:2014-10-25 13:44:312015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:48:31
8 [报告]
发表于 2008-11-13 22:19 |只看该作者
看楼主的代码,应该还是学生吧。


int Init_SeqStack(SeqStack **s )
{
  if((*s)=new(SeqStack))return 0;
  (*s)->top=-1;
  return 1;
}

建议如下:

int Init_SeqStack(SeqStack **s )
{
    SeqStack *pStack;

    pStack = new(SeqStack);

    if(NULL == pStack )
        return 0;
  
     (*s)->top=-1;
  
   return 1;
}

论坛徽章:
0
9 [报告]
发表于 2008-11-13 23:15 |只看该作者
试试
while(!Empty_SeqStack(&S)) {
   Pop_SeqStack(&S,&x);
   cout<<x<<" ";
}
cout<<".";
while(!Empty_SeqStack(&Q)) {
   Pop_SeqStack(&Q,&y);
   Push_SeqStack(&P,y);
}
while(!Empty_SeqStack(&P)) {
    Pop_SeqStack(&P,&y);
    cout<<" "<<y;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP