虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

自动识别<b>系统</b>

  • pl0编译器

    pl0编译器,自动识别pl0文法

    标签: pl0 编译器

    上传时间: 2015-02-23

    上传用户:agent

  • 奉上刚做好的测温小制作--基于DS18B20传感器 今个学期刚学了单片机

    奉上刚做好的测温小制作--基于DS18B20传感器 今个学期刚学了单片机,学期末的时候老师要求每个人都做个有关单片机应用的小制作,而我的作品就是这个。DS18B20挺好用的,功能很强(我用到的只是最简单的)。可惜现在没时间(要考试!),等下吧,考完后我再努力将这个小制作的功能加强,特别是想做到能自动识别传感器ID号的功能。 我知道有很多人都对DS18B20很感兴趣,借此奉上源代码,实物我已经做好了,测温很稳定。希望对大家有帮助。

    标签: 18B B20 DS 18

    上传时间: 2014-01-12

    上传用户:

  • RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key

    RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个数便是 public_key ,编码过程是, 若资料为 a, 将其看成是一个大整数, 假设 a < n.... 如果 a >= n 的话, 就将 a 表成 s 进位 (s

    标签: person_key RSA 算法

    上传时间: 2013-12-14

    上传用户:zhuyibin

  • Kohonen网络的学习过程可描述为:对于每一个网络的输入

    Kohonen网络的学习过程可描述为:对于每一个网络的输入,只调整一部分权值,使权向量更接近或更偏离输入矢量,这一调整过程就是竞争学习。随着不断的学习过程,所有输入矢量都在输入矢量空间相互分离,形成了各自代表输入空间的一类模式,这就是Kohonen网络的特征自动识别的聚类功能。请解压缩后按照readme提示进行操作。

    标签: Kohonen 网络 过程 输入

    上传时间: 2015-04-04

    上传用户:miaochun888

  • 含有七个函数

    含有七个函数,读写Jpeg,GIFBMP。可自动识别JPGGIFBMP;可保存JPG;可控制JPG的读写速度、质量;可读取动画GIF的任意帧;标准参数调用,可用于其他程序语言;占极少的内存!(修正了1.0版中的BUG)

    标签: 函数

    上传时间: 2014-06-02

    上传用户:zhengzg

  • 数字运算

    数字运算,判断一个数是否接近素数 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

  • JoyOA在业内首次提出“快乐办公”的概念

    JoyOA在业内首次提出“快乐办公”的概念,并具备业内领先的四大技术: 1、大文件上传技术 一般情况下通过Web方式上传文件,因技术的限制,只能上传下于4M甚至2M的文件,美特易通过自主研发的大文件上传组件,彻底打破这一局限,能够上传高大1000M的文件。 2、多角色管理技术 一个用户可同时具备多个权限,通过角色切换可以轻松完成不同部门的工作或管理任务。 3、指纹认证技术 为安全性有严格要求的企业或单位提供指纹识别登录系统,让你的系统像银行保险箱一样安全。 4、Web情报分析技术 监控竞争对手的产品、收集您感兴趣的财经信息、分析各大网络媒体上的热点消息,我们为您提供了强大的情报分析系统。 JoyOA 历经锤炼,吸取同类产品之精华,快乐办公,从JoyOA开始……

    标签: JoyOA

    上传时间: 2013-12-17

    上传用户:chenxichenyue

  • 源代码用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a

    源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将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).

    标签: lt 源代码 动态规划 序列

    上传时间: 2013-12-26

    上传用户:siguazgb

  • The government of a small but important country has decided that the alphabet needs to be streamline

    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

  • 一个公式解析程序

    一个公式解析程序,支持变量,具有操作符优先级的自动识别,语法错误报警等功能

    标签: 程序

    上传时间: 2013-12-26

    上传用户:小眼睛LSL