-
数据库学习
初次接触数据库的童鞋们 从简单的实例中 慢慢学习 逐步认识 本例注重c#的训练 更清晰的讲解 有关windows窗体
- 2022-04-09 13:42:50下载
- 积分:1
-
VB实现的三
VB实现的三层结构的整体教学实例(少见)
- 2023-05-28 04:00:04下载
- 积分:1
-
串的Replace函数
串的Replace函数-Series Replace function
- 2022-07-13 06:57:19下载
- 积分:1
-
从文件中读入的数据来计算全班平均性能…
从文件里读入数据,计算各课成绩的平均分,最高分,最低分,学生的加权平均成绩,并生成分析数据。-Reading from the document into the data to calculate the class average performance, the maximum points, minimum points, the weighted average performance of students, and generate analytical data.
- 2022-08-11 05:56:46下载
- 积分:1
-
Oracle BerkeleyDB
Oracle BerkeleyDB--SQLitehttp--www_sqlite_com_cn-_files2.rar//bdb2
- 2022-04-30 08:41:25下载
- 积分:1
-
要求完成以下功能:
1)能够从屏幕上读取一个学生的信息并将信息存入到数据文件中。
2)能够将指定的信息从文件中删除。
3)能够按编号、姓名对学生的信...
要求完成以下功能:
1)能够从屏幕上读取一个学生的信息并将信息存入到数据文件中。
2)能够将指定的信息从文件中删除。
3)能够按编号、姓名对学生的信息进行检索并将检索结果显示在屏幕上。
4)可以统计全部学生的总成绩,及其在班上的排名。
5)能够统计各科的平均成绩及及格率。
6)要求有错误提示功能,例如性别只能输入男女,输入错误提示重新输入。
7)如果检索不到相应的信息应提示用户。-asked to perform the following functions : 1) to read from the screen of a student"s information will be deposited into the data file. 2) can be designated information deleted from the document. 3), according to numbers, the names of the students will retrieve information retrieval results showed on the screen. 4) Statistical all students can be a total score, and the class rankings. 5) Statistics Branch to the average scores and passing rates. 6) require a functional error messages, such as sex between men and women can only import, importation of error messages to re-enter. 7) If less than the corresponding retrieval of information should prompt the user.
- 2023-04-01 16:00:03下载
- 积分:1
-
一个效率可以的线段树代码
可以直接用来求解矩形面积并
另外可以修改实现更多功能....
一个效率可以的线段树代码
可以直接用来求解矩形面积并
另外可以修改实现更多功能.-The efficiency of the line segment can be a tree code can be directly used to solve the rectangular area and the other can be modified to achieve more.
- 2023-07-08 10:55:03下载
- 积分:1
-
编程实现出圈问题。是上《数据结构》时候的一次实习的成果。...
编程实现出圈问题。是上《数据结构》时候的一次实习的成果。-Programming problem to achieve a circle. It s a program produced during learning data structure
- 2022-03-11 09:00:17下载
- 积分:1
-
这是一个用CUDA平台实现的简单的排序。具有参考价值
这是一个用CUDA平台实现的简单的排序。具有参考价值-This is a simple to use CUDA platform of the sort. With a reference value
- 2023-03-14 05:45:03下载
- 积分:1
-
假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,1...
假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,100,101,110,111。那么符号序列S0S1S7S0S1S6S2S2S3S4S5S0S0S1编码后变成 000001111000001110010010011100101000000001,共用了42bit。我们发现S0,S1,S2这3个符号出现的频率比较大,其它符号出现的频率比较小,我们采用这样的编码方案:S0到S7的码辽分别01,11,101,0000,0001,0010,0011, 100,那么上述符号序列变成011110001110011101101000000010010010111,共用了39bit。尽管有些码字如 S3,S4,S5,S6变长了(由3位变成4位),但使用频繁的几个码字如S0,S1变短了,所以实现了压缩。对于上述的编码可能导致解码出现非单值性:比如说,如果S0的码字为01,S2的码字为011,那么当序列中出现011时,你不知道是S0的码字后面跟了个1,还是完整的一个S2的码字。因此,编码必须保证较短的编码决不能是较长编码的前缀。符合这种要求的编码称之为前缀编码。要构造符合这样的二进制编码体系,可以通过二叉树来实现。-Suppose a file appears in eight kinds of symbols S0, SQ, S2, S3, S4, S5, S6, S7, then each symbol to be encoded, at least 3bit. Suppose encoding 000,001, 010,011,100,101,110,111. Then the symbolic sequence S0S1S7S0S1S6S2S2S3S4S5S0S0S1 encoded into 000001111000001110010010011100101000000001, sharing a 42bit. We found that S0, S1, S2 these three symbols the frequency of relatively large, the other symbols the frequency is relatively smal
- 2022-04-27 21:17:34下载
- 积分:1