摘要: 1 #include 2 #include 3 4 struct tree 5 { 6 char info; 7 struct tree *left; 8 struct tree *right; 9 }; 10 11 struct tree *root; /*树的第一个结点*/ 12 struct tree *construct(s... 阅读全文
posted @ 2019-10-14 10:51 insist钢 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 关系数据模型结构关系模型由关系数据结构,关系操作结构,关系完整性约束三部分组成关系型数据模型中数据用二维表格的形式组成关系操作集合 增加、删除、修改、查询,并交等三种约束完整性:实体完整性、参照完整性、用户自定义完整性。实体完整性:实体完整性是指实体的主属性不能取空值,列如人都身份证,学生的学号参照 阅读全文
posted @ 2019-10-14 08:05 insist钢 阅读(120) 评论(0) 推荐(0) 编辑