登录
首页 » 数据结构 » Variable postfix infix expression evaluation: Enter the expression,# to end the...

Variable postfix infix expression evaluation: Enter the expression,# to end the...

于 2022-05-29 发布 文件大小:9.09 kB
0 140
下载积分: 2 下载次数: 1

代码说明:

中缀变后缀表达式求值:输入表达式,#为结束符(如1+2#),程序会自动给出后缀表达式,并给出最终计算结果。程序中部分地方有注释-Variable postfix infix expression evaluation: Enter the expression,# to end the character (eg, 1+2#), the program will automatically give postfix expression, and gives the end result. Some parts of the program annotated

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 使用vc进行库编程实例:个人通讯录管理
    使用vc进行数据库编程实例:个人通讯录管理-use vc database programming examples : personal address book management
    2022-02-07 00:12:12下载
    积分:1
  • 重大环境危险源管理仅供参考
    重大环境危险源管理仅供参考-major source of environmental risk management is for reference only
    2022-06-14 16:41:56下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • Microsoft Access中的图形切割程序
    Microsoft Access中的图形切割程序-Graph cut program in the Microsoft Acess
    2022-04-27 14:56:56下载
    积分:1
  • One of database applications: vehicle management system, using Visual FoxPro
    数据库应用之一:车辆管理系统,用Visual FoxPro-One of database applications: vehicle management system, using Visual FoxPro
    2022-11-22 18:55:03下载
    积分:1
  • C++ 管理系统
    C++ 开发的管理系统 从csdn 过来的 可以运行 不过的 管理系统 适合初学者 学习开发
    2022-02-02 23:44:31下载
    积分:1
  • 这是一个运用多种排序法对进行排序的程序,排序时间复杂性小,空间复杂性小,排序速度快.压缩包包括源程序文件,再vc中运行....
    这是一个运用多种排序法对数据进行排序的程序,排序时间复杂性小,空间复杂性小,排序速度快.压缩包包括源程序文件,再vc中运行.-This is a use of a variety of data sequencing procedures for ordering, scheduling time complexity of small, space complexity of small, fast order. Compressed including source files, then vc run.
    2022-03-06 17:24:25下载
    积分:1
  • 哈夫曼树算法 根给定的n个权值{w1,w2,……wn},造n棵只有根点的二叉树,令起权值为wj 在森林中选取两棵根点权值最小的树作左右子树,造...
    哈夫曼树算法 根据给定的n个权值{w1,w2,……wn},构造n棵只有根结点的二叉树,令起权值为wj 在森林中选取两棵根结点权值最小的树作左右子树,构造一棵新的二叉树,置新二叉树根结点权值为其左右子树根结点权值之和 在森林中删除这两棵树,同时将新得到的二叉树加入森林中 重复上述两步,直到只含一棵树为止,这棵树即哈夫曼树 -Huffman tree algorithm based on a given n-weights (w1, w2, ... ... wn), construct n trees only a root node of the tree, so that from the right value of wj in the forest root node to select two the right tree for the value of the smallest subtree around, a new binary tree structure, the right to buy a new tree root node value of its subtree root node around the right value in the forest and delete these two trees, At the same time, the new binary tree obtained by adding the forest to repeat the above two steps until a tree containing only the date, that is, Huffman tree tree
    2023-05-05 13:05:03下载
    积分:1
  • 需要sql的支持
    需要sql的支持-need the support sql
    2022-02-03 23:39:01下载
    积分:1
  • 给定字符串,按照英文字母、字、符号顺序排序算法
    给定字符串,按照英文字母、数字、符号顺序排序算法-given string, according to the English alphabet, numbers, symbols order Sort Algorithm
    2023-08-16 18:20:03下载
    积分:1
  • 696518资源总数
  • 106161会员总数
  • 5今日下载