摘要:排序+查找void X_Sort(ElelmentType A[], int N) 简单排序1:冒泡排序(每次最大的到最后) void Bubble_Sort(ElementType A[],int N) { for(P = N-1; P >= 0;P--) { flag = 0; for(i =
阅读全文
06 2018 档案
摘要:1:创建数据库 create database runoob;2:删除数据库 drop database runoob;3:选择数据库 use runoob;4:数据类型 数值类型: tinyint 1byte smallint 2byte mediumint 3byte int/integer 4
阅读全文