鱼C论坛

 找回密码
 立即注册
查看: 3935|回复: 8

关于栈的二进制转十进制代码问题

[复制链接]
发表于 2014-10-11 23:16:29 | 显示全部楼层 |阅读模式
1鱼币
为什么我用vs2013将小甲鱼老师的代码敲上去,黑窗口在输入二进制后就没反应了
QQ截图20141011231309.png


代码:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define STACK_INIT_SIZE 20
#define STACKINCREMENT  10

typedef char ElemType;
typedef struct
{
        ElemType *base;
        ElemType *top;
        int stackSize;
}sqStack;

void InitStack(sqStack *s)
{
        s->base = (ElemType *)malloc(STACK_INIT_SIZE * sizeof(ElemType));
        if (!s->base)
        {
                exit(0);
        }

        s->top = s->base;
        s->stackSize = STACK_INIT_SIZE;
}

void Push(sqStack *s, ElemType e)
{
        if (s->top - s->base >= s->stackSize)
        {
                s->base = (ElemType *)realloc(s->base, (s->stackSize + STACKINCREMENT) * sizeof(ElemType));
                if (!s->base)
                {
                        exit(0);
                }
        }

        *(s->top) = e;
        s->top++;
}

void Pop(sqStack *s, ElemType *e)
{
        if (s->top == s->base)
        {
                return;
        }
        *e = *--(s->top);
}

int StackLen(sqStack s)
{
        return (s.top - s.base);
}

int main()
{
        ElemType c;
        sqStack s;
        int len, i;
        double  sum = 0;

        InitStack(&s);

        printf("请输入二进制数,输入#符号表示结束!\n");
        scanf_s("%c", &c);
        while (c != '#')
        {
                Push(&s, c);
                scanf_s("%c", &c);
        }

        getchar();  // 把'\n'从缓冲区去掉

        len = StackLen(s);
        printf("栈的当前容量是: %d\n", len);

        for (i = 0; i < len; i++)
        {
                Pop(&s, &c);
                sum = sum + (c - 48) * pow(2, i);
        }

        printf("转化为十进制数是: %d\n", sum);

        return 0;
}


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-10-12 11:16:03 | 显示全部楼层
char str[10];
        ElemType c;
        sqStack s;
        int len, i;
        double  sum = 0;

        InitStack(&s);

        printf("请输入二进制数,输入#符号表示结束!\n");
//         scanf_s("%c", &c);
//         c = getchar();
//         while (c != '#')
//         {
//                 Push(&s, c);
//                 fflush(stdin);
//                 c = getchar();
//                 //scanf_s("%c", &c);
//         }
        scanf_s("%9s",str,_countof(str));
        for (int i=0;i<10;i++)
        {
                if (str[i] == '#' || str[i] == '\0')
                {
                        break;
                }
                Push(&s,str[i]);
        }
        getchar();  // 把'\n'从缓冲区去掉

        len = StackLen(s);
        printf("栈的当前容量是: %d\n", len);

        for (i = 0; i < len; i++)
        {
                Pop(&s, &c);
                sum = sum + (c - 48) * pow(2.0, i);
        }

        printf("转化为十进制数是: %d\n", (int)sum);

        return 0;
我把main函数中字符输入改了一下。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-10-12 11:48:27 | 显示全部楼层
把scanf_s 改为 scanf
把sum 定义为int 型
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-10-12 18:36:05 | 显示全部楼层
慈慈乱了 发表于 2014-10-12 11:48
把scanf_s 改为 scanf
把sum 定义为int 型

平台用的vs2013,改为scanf和sum改为int的话运行无法通过
错误提示为:
1>------ 已启动生成:  项目: ConsoleApplication4, 配置: Debug Win32 ------
1>  test.c
1>c:\users\administrator\documents\visual studio 2013\projects\consoleapplication4\consoleapplication4\test.c(67): error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>          e:\program files\vs2013\vc\include\stdio.h(283) : 参见“scanf”的声明
1>c:\users\administrator\documents\visual studio 2013\projects\consoleapplication4\consoleapplication4\test.c(82): warning C4244: “=”: 从“double”转换到“int”,可能丢失数据
========== 生成:  成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-10-13 11:13:40 | 显示全部楼层
服务器已断开连接,且未发送任何数据。
服务器已断开连接,且未发送任何数据。
小甲鱼的视频又不能下了?????
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

头像被屏蔽
发表于 2014-11-1 07:35:53 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-11-2 00:12:06 | 显示全部楼层
俺来学习  谢谢分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-11-30 11:34:22 | 显示全部楼层
数据结构吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-11-30 11:35:04 | 显示全部楼层
还没学习到呢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 07:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表