您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Gray码是一个长度为2n的序列。序列中无相同的原图,每个元素都是长度为n位的串,相邻元素恰好只有一位不同。用分治策略设计一个算法对任意的n构造相应的Gray码。

  2. n=1时,Gray码:0,1 n=2时,Gray码:00,10, 11,01 n=3时,Gray码:000,010,011,001, 101,111,110,100 n=4,时,Gray码:0000,0010,0011,0001,0101,0111,0110,0100, 1100,1110,1111,1101,1001,1011,1010,1000 从上面可以看出如下规律:从n=2开始,每个n的Gray码由两部分组成。后一位的Gray码可以从前一位的G ray码求出,即,在n的Gray码的前半
  3. 所属分类:其它

    • 发布日期:2009-06-22
    • 文件大小:14336
    • 提供者:wwx1234
  1. Introduction to Statistical Signal Processing--Robert M. Gray

  2. Stanford大学的Robert M. Gray的统计信号处理!
  3. 所属分类:专业指导

    • 发布日期:2009-07-01
    • 文件大小:2097152
    • 提供者:deming5261
  1. Gray code-参考代码

  2. Gray code Time Limit:2000MS Memory Limit:65536K Total Submit:242 Accepted:121 Descr iption Gray code is an interesting code sequence and has many applications in computer science.No matter you have known it before or not, here are some introductions
  3. 所属分类:其它

    • 发布日期:2009-10-16
    • 文件大小:352
    • 提供者:yy_christine
  1. ACM Gray code

  2. ACM Gray code 能accepted Descr iption Gray code is an interesting code sequence and has many applications in computer science.No matter you have known it before or not, here are some introductions about its features: (1) Gray code has 2^n unique elem
  3. 所属分类:其它

    • 发布日期:2009-10-16
    • 文件大小:1024
    • 提供者:jhbyan
  1. Business-process-driven gray-box SOA testing.pdf

  2. Business-process-driven gray-box SOA testing.pdf
  3. 所属分类:其它

    • 发布日期:2010-01-23
    • 文件大小:807936
    • 提供者:helihongzhizhuo
  1. RGB Bayer 2 gray.rar

  2. RGB Bayer 2 gray.rar Bayer直接转成灰度图matlab
  3. 所属分类:其它

    • 发布日期:2010-01-28
    • 文件大小:904
    • 提供者:icebluemyth
  1. 构造Gray码的分治算法(C++)

  2. Gray码是一个长度为2的N次幂的序列,序列中无相同元素,每个元素都是长度为N位的(0,1)串,相邻元素恰好只有一位不同,用分置策略设计一个算法对任意的N构造相应的Gray码。
  3. 所属分类:其它

    • 发布日期:2011-01-09
    • 文件大小:537
    • 提供者:floydman
  1. gray hat python

  2. gray hat python 逆向工程python 寫的還算可以
  3. 所属分类:Python

    • 发布日期:2011-02-23
    • 文件大小:3145728
    • 提供者:hardware007
  1. 精彩Gray code

  2. Gray code is an interesting code sequence and has many applications in computer science.No matter you have known it before or not, here are some introductions about its features: (1) Gray code has 2^n unique elements; (2) Each element contains n dig
  3. 所属分类:C/C++

    • 发布日期:2011-03-21
    • 文件大小:24576
    • 提供者:abc310946899
  1. C经典算法之格雷码(Gray Code)

  2. Gray Code是一个数列集合,每个数使用二进位来表示,假设使用n位元来表示每个数好了,任两个数之间只有一个位元值不同,例如以下为3位元的Gray Code: 000 001 011 010 110 111 101 100 由定义可以知道,Gray Code的顺序并不是唯一的,例如将上面的数列反过来写,也是一组Gray Code: 100 101 111 110 010 011 001 000 Gray Code是由贝尔实验室的Frank Gray在1940年代提出的,用来在使用PCM(Pu
  3. 所属分类:C

    • 发布日期:2011-09-22
    • 文件大小:902
    • 提供者:sky_qing
  1. Gray生成组合源代码c语言

  2. Gray码 c语言 动态数组勿用孟凡超~~有雷同哈~~
  3. 所属分类:C

    • 发布日期:2011-10-28
    • 文件大小:4096
    • 提供者:zwjhit
  1. gray码生成组合算法的java代码

  2. java语言编写的gray码生成组合的程序代码,包括界面,组合数学作业。
  3. 所属分类:Java

    • 发布日期:2011-12-25
    • 文件大小:77824
    • 提供者:lucy0705
  1. Reducing the Number of Gray Levels in an Image

  2. PROJECT 02-02 Reducing the Number of Gray Levels in an Image (a) Write a computer program capable of reducing the number of gray levels in a image from 256 to 2, in integer powers of 2. The desired number of gray levels needs to be a variable input
  3. 所属分类:专业指导

    • 发布日期:2012-03-14
    • 文件大小:958
    • 提供者:daisydy
  1. C语言Gray码转换代码

  2. 【问题描述】 格雷码(Gray Code)是一种在位置传感器中常用的编码,其特点是每两个相邻的数的格雷码只有一个二进制位是不同的。例如,0-7的格雷码编码如下: 0 000 1 001 2 011 3 010 4 110 5 111 6 101 7 100 普通二进制编码到格雷码的转换方式如下: Gn-1 = Bn-1 Gi = Bi+1 ^ Bi (0<=i<n-1,n为编码的长度) 格雷码到普通二进制编码的转换方式如下: Bn-1 = Gn-1 Bn-2 = Gn-2 ^ Bn
  3. 所属分类:C/C++

    • 发布日期:2012-04-05
    • 文件大小:866
    • 提供者:shuaiwang126
  1. Gray Hat Python .pdf

  2. Gray Hat Python .pdf
  3. 所属分类:Python

    • 发布日期:2012-04-13
    • 文件大小:3145728
    • 提供者:winn779
  1. Using openCV to load, gray and save image

  2. Using openCV to load image, and transfer to gray and save image.
  3. 所属分类:C++

    • 发布日期:2012-04-24
    • 文件大小:617
    • 提供者:ching60
  1. GRAY HAT PYTHON

  2. GRAY HAT PYTHON
  3. 所属分类:Python

    • 发布日期:2013-03-05
    • 文件大小:3145728
    • 提供者:oychw
  1. gray-world

  2. 颜色恒常性算法Gray-World算法的matlab源代码
  3. 所属分类:C++

    • 发布日期:2013-04-09
    • 文件大小:330
    • 提供者:u010226807
  1. Gray安全系列

  2. Gray安全系列 oday利用 利用oday入侵各种网站 绝对给力
  3. 所属分类:其它

  1. Gray

  2. Gray's for Potplayer - 又简洁,又鲜明,可以添加到Potplayer 上,形成独特的风格
  3. 所属分类:网络管理

    • 发布日期:2013-08-26
    • 文件大小:11264
    • 提供者:u011831771
« 12 3 4 5 6 7 8 9 10 ... 50 »