-
动态链接库d
动态链接库d-dll,dllllllllllllllllllllllllllllllll
- 2022-01-26 04:23:37下载
- 积分:1
-
quake3 bsp 文件浏览器源代码。
quake3 bsp 文件浏览器源代码。
quake3 bsp 文件浏览器源代码。
quake3 bsp 文件浏览器源代码。-quake3 bsp is codes of files explorer。 quake3 bsp is codes of files explorer。
- 2023-07-29 12:30:04下载
- 积分:1
-
哈希表的设计
[问题描述]
真对你所在的集体(比如你所在的班级)中的人名设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查表的程序。...
哈希表的设计
[问题描述]
真对你所在的集体(比如你所在的班级)中的人名设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查表的程序。
[基本要求]
假设人名为中国人姓名的汉语拼音形式,待填入的哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数方法构造,用伪随机探测再散列处理冲突。
-Hash table design [description of the problem] really right in your collective (such as in your class) in the design of a hash table of names, bringing the average search length of less than R, the completion of construction of the corresponding tables and look-up table procedures. [Basic requirements] assumed the names of people known as the Chinese pinyin form, fill in the hash table to be a total of 30 names, taking the average search length of the upper limit of 2. Hash function with the addition of more than a few ways to stay construction, using pseudo-random probing re-hashing to resolve disputes.
- 2022-02-07 13:16:03下载
- 积分:1
-
vb.net source we hope to help a bit
vb.net源码 希望对大家有点帮助-vb.net source we hope to help a bit
- 2023-06-25 20:30:03下载
- 积分:1
-
the procedures provided by the ROCKY! This is a start to help you remove the fil...
本程序由ROCKY提供!这是一个帮你清除开始菜单文档的历史记录、TEMP文件夹及Cookies的小程序。只对2000的系统有效!-the procedures provided by the ROCKY! This is a start to help you remove the file menu historical record, TEMP folder and Cookies small procedures. Only 2,000 pairs of the system effective!
- 2022-02-21 12:31:18下载
- 积分:1
-
Source code of application used to monitor Anti
Source code of application used to monitor Anti-Cheat programs from World of Warcraft so see if these Anti-Cheat follow rules and do not invade your privacy.
- 2022-03-19 11:49:24下载
- 积分:1
-
P2P流媒体源,国外项目的收入来源是外部的客户…
p2p 流媒体源码,国外的一个开源项目
source client is an external program which is responsible for sending content data to icecast. -p2p streaming media source, foreign projects a revenue source client is an external program which is responsible for sending content data t o Icecast.
- 2022-03-16 13:00:17下载
- 积分:1
-
evc+ mapx mobile development sample procedures
evc + mapx mobile 开发示例程序-evc+ mapx mobile development sample procedures
- 2022-03-02 12:19:29下载
- 积分:1
-
java异常处理
3.8 异常处理
什么是异常
知道Java异常分类
处理异常的两种方式
throw和throws区别
如何创建自定义异常
概念:
在程序中,可能产生程序员没有预料到的各种错误情况,比如打开一个不存在的文件等,在Java中,这种在程序运行时可能出现的错误称为异常。
异常可以把“描述在正常执行过程中做什么事”的代码和“出了问题怎么办”的代码相分离
例子:demo05.ExceptionDemo.java
Java异常分类A:
java.lang.Error,java.lang.Exception
Error(错误):jvm系统内部错误、资源耗尽等严重问题,发生Error时,编程人员无能 为力,只能终止程序,例如内存溢出等。
Exception(异常):因编程错误或偶然的外在因素导致的一般性问题,例如:对负数 开平方根、空指针访问等,当发生Exception 时,编程人员可以做出处理,并做出人性 化响应,比如弹出窗口,显示“请不要输入负数!”。
异常分类B:
检查性异常:编译器必须处理的异常,该类异常通常是Exception类型或其子类(RuntimeException类除外)//运行时异常
SQLException、IOException、ClassNotFoundException
例子:/DemoProject/src/com/hyg/demo08/FileInputStreamDemo.java
非检查性异常:编译器不要求强制处理的异常,RuntimeException类及其所有子类都是非检查性异常。
NullPointerException、ClassCastException
例子:equa
- 2022-02-14 14:02:16下载
- 积分:1
-
本文件包括了各种常用排序算法
void InsertSort(SqList L) //直接插入排序
void BInsertSort(SqList L)...
本文件包括了各种常用排序算法
void InsertSort(SqList L) //直接插入排序
void BInsertSort(SqList L) //折半插入排序
void BubbleSort(SqList L) //冒泡排序
void QuickSort(SqList L) //快速排序
void ShellSort(SqList L) //希尔排序-This document includes a variety of commonly used sorting algorithm void InsertSort (SqList L)// direct insertion sort void BInsertSort (SqList L)// half insertion sort void BubbleSort (SqList L)// Bubble Sort void QuickSort (SqList L)// quicksort void ShellSort (SqList L)// Hill sort
- 2023-04-10 05:10:02下载
- 积分:1