M
marhoo
Unregistered / Unconfirmed
GUEST, unregistred user!
1、某系统权限设计:一个用户可拥有多个权限,一个权限可赋给多个用户,设计ER图(实体关系图);
2、要求为一个主题设置若干个观察者,试用Observer模试实现(可用伪码);
3、给出二叉树,描述如下:
typedef struct bnode *bintree;
struct bnode{
datatype data;
bintree lc,rc;
}
求其高度(深度)。
十分感谢。
2、要求为一个主题设置若干个观察者,试用Observer模试实现(可用伪码);
3、给出二叉树,描述如下:
typedef struct bnode *bintree;
struct bnode{
datatype data;
bintree lc,rc;
}
求其高度(深度)。
十分感谢。