一个不错的电子书,有关注册表及系统安全
标签: 电子书
上传时间: 2013-11-28
上传用户:钓鳌牧马
企业进销存管理 说明 1、建立SQl Server 2000数据库,进入pb8.0进行odbC设置,(名称:jxc 用户名:sa 密码:无)2、执行sql.txt中的脚本,自动创建表。3、运行程序,可进行导入数据,内有部分测试数据。4、reg.exe为注册码生成器。
上传时间: 2015-03-14
上传用户:zycidjl
目前很多水电公司仍然采用人工催费的方法,费时费力,效率低。水电费语音自动查询催费系统正是为解决这一问题应运而生的。电话用户可随时随地拨打水电公司特服电话访问查询系统,查询水电费发生情况,了解用水电情况;对于逾期拖欠水电费的用户,系统自动拨打欠费电话,提醒用户及时交纳水电费。
上传时间: 2013-12-24
上传用户:aix008
用于串口应用程序的调试监控工具,软件可模拟设备往串口发送指定格式的数据串,同时也可以用于实时监控串口读写过程中的所有数据流。☆ 自动侦测当前系统中所有可用的串口数,支持USB扩展出的虚拟串口(可到COM256)。☆ 支持ASCII码和十六进制数据格式的发送和接收。☆ 可以自由选择侦测的串口,接收数据区的容量可以无限大。☆ 发送、接收数据区的大小可以随意拉伸调节。☆ 对发送、接收数据区加入鼠标右键菜单的支持。☆ 扩大串口波特率的支持,现最高Baud可到921600。☆ 支持Unicode内码显示。☆ 增加自动发送数据功能。☆ 增加保存显示记录的功能。
上传时间: 2015-04-16
上传用户:奇奇奔奔
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).
上传时间: 2013-12-26
上传用户:siguazgb
The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition
标签: government streamline important alphabet
上传时间: 2015-06-09
上传用户:weixiao99
嵌入式modem编程,基于80c196芯片。其中的通讯规约是基于102抄表协议但有所改动。
上传时间: 2013-12-05
上传用户:lijinchuan
考试是教学过程中一个重要的环节,对考试试卷质量及考试成绩及时、有效地分析,是教学管理部门非常重要的工作内容之一。文章从教学管理策划和教学管理软件开发角度,探讨了计算机和OMR(opticalmark reader)技术在考试分析中的应用和实现,并给出一个具体的自动阅卷和分析系统实例的设计原理和开发过程。
标签: opticalmark OMR 过程 环节
上传时间: 2014-01-12
上传用户:lixinxiang
上下文无关文法(Context-Free Grammar, CFG)是一个4元组G=(V, T, S, P),其中,V和T是不相交的有限集,S∈V,P是一组有限的产生式规则集,形如A→α,其中A∈V,且α∈(V∪T)*。V的元素称为非终结符,T的元素称为终结符,S是一个特殊的非终结符,称为文法开始符。 设G=(V, T, S, P)是一个CFG,则G产生的语言是所有可由G产生的字符串组成的集合,即L(G)={x∈T* | Sx}。一个语言L是上下文无关语言(Context-Free Language, CFL),当且仅当存在一个CFG G,使得L=L(G)。 *⇒ 例如,设文法G:S→AB A→aA|a B→bB|b 则L(G)={a^nb^m | n,m>=1} 其中非终结符都是大写字母,开始符都是S,终结符都是小写字母。
标签: Context-Free Grammar CFG
上传时间: 2013-12-10
上传用户:gaojiao1999