数据结构之利用栈实现简单计算器-C语言代码实现

简介: 数据结构之利用栈实现简单计算器-C语言代码实现

代码运行效果

# gcc Cal.c
# ./a.out
请输入10以内的表达式(不支持负数/不支持超过100的式子)
:9+(3-1)*3+1/2
您输入的是: 9+(3-1)*3+1/2
算法式:9+(3-1)*3+1/2     后缀表达式:931-3*+12/+  计算结果: 15.50
结果: 15.50
请输入10以内的表达式(不支持负数/不支持超过100的式子)
:1+2-3*4/5+6
您输入的是: 1+2-3*4/5+6
算法式:1+2-3*4/5+6       后缀表达式:1234*5/-+6+  计算结果: 6.60
结果: 6.60
请输入10以内的表达式(不支持负数/不支持超过100的式子)
:3+2*(9+8)/3*(3/5)
您输入的是: 3+2*(9+8)/3*(3/5)
算法式:3+2*(9+8)/3*(3/5)         后缀表达式:3298+*3/35/*+        计算结果: 9.80
结果: 9.80
请输入10以内的表达式(不支持负数/不支持超过100的式子)
:^C
#



C代码

# include <stdio.h>
# include <stdlib.h>
# include <string.h>
// 栈
typedef struct stack {
        char data;
        struct stack *next;
} StackAdder,*PStackAdder;
// 动态数组
typedef struct {
        char *data; // 动态数组
        int length; // 存储的有效数据
        int maxlen; // 最大存储的有效数据
} Array,*PArray;
// 初始化栈
StackAdder *InitStack();
// 入栈
int Adder(StackAdder **Top,StackAdder **LastTop,StackAdder *Bottom,char data);
// 出栈
int Pop(StackAdder **Top,StackAdder **LastTop,StackAdder *Bottom,char *data);
// 获取栈顶指针
StackAdder *GetTop(StackAdder *Bottom,StackAdder **SLastTop);
// 空栈
int IsEmpty(StackAdder *Top,StackAdder *Bottom);
// 初始化动态数据
int InitArray(Array *arr,int n);
// 动态添加数组数据
Array ArrayAppend(Array *arr,char *v);
int strToNum(char c);
double Calculator(double i,double j,char x);
double toCal(char *formula) {
        // 动态数组
        Array aa;
        InitArray(&aa,3);
        // 2
        // 1
        // bottom 1 2
        // 3 + 2 / (2 + 3)  = 1
        // 3 + 2 / 2 + 3 = 7
        // 压栈,出栈
        // 运算优先级: 1.[()] 2.[/ *] 3.[+ -]
        // 栈初始化
        PStackAdder SBottom;
        PStackAdder STop;
        PStackAdder SLastTop;
        SBottom = InitStack();
        STop =  GetTop(SBottom,&SLastTop);
        // 表达式,自动过滤 除 0-9 +-*/() 外的所有字符
        //char formula[] = "9+(3-1)*3+1/2";
        //char formula[] = "1+2-3*4/5+6";
        int i;
        char datas;
        int OpCount = 0;
        for (i=0;formula[i]!='\0';i++) {
                // 判断为数字
                if (('0' <= formula[i]) && ('9' >= formula[i])) {
                        datas = formula[i];
                        aa = ArrayAppend(&aa,&datas);
                }
                // 判断为操作符 + - * / ( )
                if (('*' == formula[i]) || ('/' == formula[i]) || ('(' == formula[i]) || (')' == formula[i]) || ('+' == formula[i]) || ('-' == formula[i]) ) {
                        // + - * / 符号计数
                        if (('(' != formula[i]) && (')' != formula[i])) {
                                OpCount++;
                        }
                        // 为空,直接压栈
                        if(IsEmpty(STop,SBottom)) {
                                Adder(&STop,&SLastTop,SBottom,formula[i]);
                                continue;
                        }
                        switch(formula[i]) {
                                case '(': {
                                        Adder(&STop,&SLastTop,SBottom,formula[i]);
                                        break;
                                }
                                // 检测为 ) ,需要将 ) 至 ( 之间的符号全部出栈
                                case ')': {
                                        while ('(' != STop->data) {
                                                if (Pop(&STop,&SLastTop,SBottom,&datas)) {
                                                        aa = ArrayAppend(&aa,&datas);
                                                }
                                        }
                                        // 丢弃 )
                                        Pop(&STop,&SLastTop,SBottom,&datas);
                                        break;
                                }
                                // 判断栈顶元素是否为 * / , 需要先出栈,然后入栈
                                case '*':
                                case '/': {
                                        while (('*' == STop->data) || ('/' == STop->data)) {
                                            Pop(&STop,&SLastTop,SBottom,&datas);
                                            aa = ArrayAppend(&aa,&datas);
                                        }
                                        Adder(&STop,&SLastTop,SBottom,formula[i]);
                                        break;
                                }
                                case '+':
                                case '-': {
                                        // 判断为 * / 需要将栈清空,再压栈 + -
                                        if (('*' == STop->data) || ('/' == STop->data)) {
                                                while(Pop(&STop,&SLastTop,SBottom,&datas)) {
                                                        aa = ArrayAppend(&aa,&datas);
                                                }
                                                Adder(&STop,&SLastTop,SBottom,formula[i]);
                                        } else {
                                                Adder(&STop,&SLastTop,SBottom,formula[i]);
                                        }
                                        break;
                                }
                        }
                }
        }
        while (STop != SBottom) {
                if (Pop(&STop,&SLastTop,SBottom,&datas)) {
                        aa = ArrayAppend(&aa,&datas);
                }
        }
        // 判断表达式
        if ( (0 == aa.length%2) || (OpCount != (aa.length/2))) {
                printf("表达式无法识别: %s\n",formula);
                return -1;
        }
        char SuffixFormula[aa.length+1];
        memcpy(&SuffixFormula,aa.data,sizeof(char) * aa.length);
        SuffixFormula[aa.length] = '\0';
        /*printf("\t");
        for (i=0;i<aa.length;i++) {
                printf("%c",aa.data[i]);
        }
        printf("\t");
        */
        double StackCal[aa.length];
        int StackTop = 0;
        for (i=0;i<aa.length;i++) {
                if (('0' <= aa.data[i]) && ('9' >= aa.data[i])) {
                        StackCal[StackTop] = (double)strToNum(aa.data[i]);
                        StackTop++;
                } else {
                        double n = StackCal[StackTop-1];
                        double m = StackCal[StackTop-2];
                        double temp = Calculator(m,n,aa.data[i]);
                        StackTop = StackTop - 2;
                        StackCal[StackTop] = temp;
                        StackTop++;
                }
        }
        printf("算法式:%s\t 后缀表达式:%s\t 计算结果: %.2lf\n",formula,SuffixFormula,StackCal[0]);
        return StackCal[0];
}
int main() {
        while (1) {
                char formula[100];
                printf("\n请输入10以内的表达式(不支持负数/不支持超过100的式子)\n:");
                scanf("%s",formula);
                printf("您输入的是: %s\n",formula);
                double xx = toCal(formula);
                printf("结果: %.2f\n",xx);
        }
        return 0;
}
// 加减乘除 运算符操作
double Calculator(double i,double j,char x){
        switch (x) {
                case '*':
                        return i*j;
                case '/':
                        return i/j;
                case '+':
                        return i+j;
                case '-':
                        return i-j;
        }
}
// 字符串转换为数字
int strToNum(char c) {
        if (('0' <= c) && ('9' >= c)) {
                return  (c-48);
        }
        return 0;
}
// 初始化栈,使栈顶 指向 栈尾
StackAdder *InitStack() {
        StackAdder * Bottom =  (StackAdder *)malloc(sizeof(StackAdder));
        if (NULL == Bottom) {
                return NULL;
        }
        return Bottom;
}
// 出栈
int Pop(StackAdder **Top,StackAdder **LastTop,StackAdder *Bottom,char *data) {
        if ((NULL == (*Top)) || (NULL == Bottom)) {
                return 0;
        }
        if ((*Top) == Bottom) {
                return 0;
        }
        //printf("%c\t",(*Top)->data);
        *data = (*Top)->data;
        //memcpy(data,&(*Top)->data,sizeof(char));
        (*LastTop)->next = NULL;
        free(*Top);
        (*Top) = GetTop(Bottom,&(*LastTop));
        return 1;
}
// 压栈
int Adder(StackAdder **Top,StackAdder **LastTop,StackAdder *Bottom,char data) {
        if (NULL == Bottom) {
                return 0;
        }
        StackAdder *newData = (StackAdder *)malloc(sizeof(StackAdder));
        if (NULL == newData) {
                printf("压栈失败,申请内存失败\n");
                return 0;
        }
        newData->next = NULL;
        newData->data = data;
        (*Top)->next = newData;
        (*LastTop) = (*Top);
        *Top = newData;
        return 1;
}
// 获取栈顶指针
StackAdder *GetTop(StackAdder *Bottom,StackAdder **LastTop) {
        if (NULL == Bottom) {
                return NULL;
        }
        PStackAdder Top = Bottom;
        while (NULL != Top->next) {
                *LastTop = Top;
                Top = Top->next;
        }
        return Top;
}
// 栈为空返回1 否则返回0
int IsEmpty(StackAdder *Top,StackAdder *Bottom) {
        if ((NULL == Top) && (NULL == Bottom)) {
                return 0;
        }
        if (Top == Bottom) {
                return 1;
        }
        return 0;
}
// 初始化动态数组
int InitArray(Array *arr,int n) {
        if (NULL == arr) {
                return 0;
        }
        arr->length = 0;
        arr->maxlen = 0;
        if (0 >= n) {
                n = 1;
        }
        arr->data = (char *)malloc(sizeof(char) * n);
        arr->maxlen = n;
        return 1;
}
// 动态添加数组数据
Array ArrayAppend(Array *arr,char *v) {
        if (arr->length+1 <= arr->maxlen) {
        // 直接存储
                memcpy(&arr->data[arr->length],v,sizeof(char));
                //arr->data[arr->length] = *v;
                arr->length = arr->length + 1;
                return *arr;
        } else {
        // 重新申请内存再存储
                Array tmp;
                int Maxlen;
                if (10 > arr->maxlen)   {
                        Maxlen = (arr->maxlen) * 2;
                } else {
                        Maxlen = (arr->maxlen) + (arr->maxlen / 2);
                }
                InitArray(&tmp,Maxlen);
                // 将原有数据拷贝新数组中
                // 方法1
                memcpy(tmp.data,arr->data,sizeof(char) * arr->length);
                // 方法2
                //strcpy(tmp.data,arr->data);
                // 方法3
                //int i;
                //for (i=0;i<arr->length;i++) {
                //      tmp.data[i] = arr->data[i];
                //}
                tmp.length = arr->length;
                // 释放原有数据
                free(arr->data);
                // 递归调用存储
                ArrayAppend(&tmp,v);
                return tmp;
        }
}
相关文章
|
18天前
|
算法 数据处理 C语言
C语言中的位运算技巧,涵盖基本概念、应用场景、实用技巧及示例代码,并讨论了位运算的性能优势及其与其他数据结构和算法的结合
本文深入解析了C语言中的位运算技巧,涵盖基本概念、应用场景、实用技巧及示例代码,并讨论了位运算的性能优势及其与其他数据结构和算法的结合,旨在帮助读者掌握这一高效的数据处理方法。
28 1
|
26天前
|
存储 算法 搜索推荐
【趣学C语言和数据结构100例】91-95
本文涵盖多个经典算法问题的C语言实现,包括堆排序、归并排序、从长整型变量中提取偶数位数、工人信息排序及无向图是否为树的判断。通过这些问题,读者可以深入了解排序算法、数据处理方法和图论基础知识,提升编程能力和算法理解。
42 4
|
19天前
|
存储 缓存 算法
在C语言中,数据结构是构建高效程序的基石。本文探讨了数组、链表、栈、队列、树和图等常见数据结构的特点、应用及实现方式
在C语言中,数据结构是构建高效程序的基石。本文探讨了数组、链表、栈、队列、树和图等常见数据结构的特点、应用及实现方式,强调了合理选择数据结构的重要性,并通过案例分析展示了其在实际项目中的应用,旨在帮助读者提升编程能力。
42 5
|
18天前
|
并行计算 算法 测试技术
C语言因高效灵活被广泛应用于软件开发。本文探讨了优化C语言程序性能的策略,涵盖算法优化、代码结构优化、内存管理优化、编译器优化、数据结构优化、并行计算优化及性能测试与分析七个方面
C语言因高效灵活被广泛应用于软件开发。本文探讨了优化C语言程序性能的策略,涵盖算法优化、代码结构优化、内存管理优化、编译器优化、数据结构优化、并行计算优化及性能测试与分析七个方面,旨在通过综合策略提升程序性能,满足实际需求。
47 1
|
C语言
利用c语言制作简易计算器
利用c语言制作简易计算器
1510 0
|
15天前
|
存储 C语言 开发者
【C语言】字符串操作函数详解
这些字符串操作函数在C语言中提供了强大的功能,帮助开发者有效地处理字符串数据。通过对每个函数的详细讲解、示例代码和表格说明,可以更好地理解如何使用这些函数进行各种字符串操作。如果在实际编程中遇到特定的字符串处理需求,可以参考这些函数和示例,灵活运用。
37 10
|
15天前
|
存储 程序员 C语言
【C语言】文件操作函数详解
C语言提供了一组标准库函数来处理文件操作,这些函数定义在 `<stdio.h>` 头文件中。文件操作包括文件的打开、读写、关闭以及文件属性的查询等。以下是常用文件操作函数的详细讲解,包括函数原型、参数说明、返回值说明、示例代码和表格汇总。
37 9
|
15天前
|
存储 Unix Serverless
【C语言】常用函数汇总表
本文总结了C语言中常用的函数,涵盖输入/输出、字符串操作、内存管理、数学运算、时间处理、文件操作及布尔类型等多个方面。每类函数均以表格形式列出其功能和使用示例,便于快速查阅和学习。通过综合示例代码,展示了这些函数的实际应用,帮助读者更好地理解和掌握C语言的基本功能和标准库函数的使用方法。感谢阅读,希望对你有所帮助!
30 8
|
15天前
|
C语言 开发者
【C语言】数学函数详解
在C语言中,数学函数是由标准库 `math.h` 提供的。使用这些函数时,需要包含 `#include <math.h>` 头文件。以下是一些常用的数学函数的详细讲解,包括函数原型、参数说明、返回值说明以及示例代码和表格汇总。
39 6
|
15天前
|
存储 C语言
【C语言】输入/输出函数详解
在C语言中,输入/输出操作是通过标准库函数来实现的。这些函数分为两类:标准输入输出函数和文件输入输出函数。
91 6