• 大小: 313KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: 其他
  • 标签:

资源简介

数据结构课程设计报告-表达式类型的实现 代码,报告都有,很完整

资源截图

代码片段和文件信息

    #include
    #include
    #include
    #include
    #define TRUE 1
    #define FALSE 0
    #define OK 1
    #define ERROR 0
    #define OVERFLOW 0
    typedef int Status;
    int save_number[31];/*在按原表达式输入形式中,输入的常量保存到数组save_number中,常量最多为30个,0单元不用*/
    char Expr_String[30];/*存放表达式的字符串*/
    /*二叉树结点类型*/
    typedef enum{INTCHAR}ElemTag;/*INT为整型数据num,CHAR为字符型数据c*/
    typedef struct TElemType
    {
        ElemTag tag;/*{INTCHAR}指示是整型还是字符型*/
        int num;/*tag=INT时,为整型*/
        char c;/*tag=CHAR时,为字符型*/

    } TElemType;
    /*二叉树的二叉链表存储表示 */
    typedef struct BiTNode
     {
       TElemType data;
       struct BiTNode *lchild*rchild; /* 左右孩子指针 */
     }BiTNode*BiTree;
    typedef BiTree SElemType;/*栈SqStack的元素*/

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      19823  2009-06-28 19:33  3107006986胡劲斌\表达式类型的实现.c

     文件     213092  2009-06-28 22:19  3107006986胡劲斌\表达式类型的实现.exe

     文件     475136  2009-06-28 16:09  3107006986胡劲斌\课程设计报告-表达式类型的实现.doc

     目录          0  2009-06-30 14:14  3107006986胡劲斌

----------- ---------  ---------- -----  ----

               708051                    4


评论

共有 条评论

相关资源