using namespace std; #include "string.h" #include "iostream" // 该文件包含标准输入输出流cout和cin以及setw()等 typedef char KeyType; // 定义关键字类型为整型 typedef struct { KeyType key; }ElemType; // 表中数据元素类型 typedef ElemType TElemType; // 二叉排序树中结点类型 # include "stdlib.h" // 该文件包含malloc()、realloc()和free()等函数 typedef struct BiTNode { TElemType data; // 结点的值 int count_; struct BiTNode *lchild; // 左孩子指针 struct BiTNode *rchild; // 右孩子指针 }BiTNode,*BiTree;int main() { BiTree r,f,p; ElemType a[]="qwertyuiop"; KeyType key; int len = strlen(a); CreateBST(r,a,len); cout<<"中序遍历二叉树:" InOrderBiTree(r,Visit); }这段代码中Elemtype数据类型是?
时间: 2024-01-26 10:02:56 浏览: 63
使用include <iostream>时一定要加using namespace std
在这段代码中,`ElemType`数据类型定义为:
```c
typedef char KeyType; // 定义关键字类型为字符型
typedef struct {
KeyType key; // 表中数据元素类型为字符型
}ElemType;
```
因此,`ElemType`数据类型是一个包含一个字符型成员变量`key`的结构体类型。
阅读全文