摘要:
``` python
关系型数据库 采用关系模型来组织数据结构的数据库(二维表) cle DB2 SQLServer Mysql SQLite都是关系型数据库 优点:容易理解,它的逻辑类似常见的表格 使用方便,都使用sql语句,sql语句非常的成熟 数据一致性高,冗余低,数据完整性好,便于操作
... 阅读全文
摘要:
``` python coding: UTF 8 递归实现, 把过程打印出来便于理解 def quick_sort1(lis, start, end): if start = end: return lf = start rg = end base = lis[lf] while lf base: 阅读全文