CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 原子

搜索资源列表

  1. guangyibiaofanxu

    3下载:
  2. 广义表的反序 逆置广义表的递归模型如下: F(LS) = null              若 LS 为空 F(LS) = LS              若 LS 为原子,且 tail(LS) 为空 F(LS) = append( F(tail(LS)), head(LS) )  若 LS->tag=0 ,且 LS->tp!=null F(LS) = append( F(tail(LS), F(head(LS)) )  若 LS->tag=1
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:221538
    • 提供者:martinwok
  1. 串口调试

    0下载:
  2. 方便快捷的STM32调试助手。正点原子1.3版本的调试助手以及丁丁调试助手,希望能帮到需要之人。
  3. 所属分类:调试

    • 发布日期:2012-11-03
    • 文件大小:372934
    • 提供者:xiaoshitou_TTMC
  1. Gabor

    5下载:
  2. 通过Gabor原子库对语音信号进行处理,用到匹配追踪算法,程序很好用,对各种语音信号的仿真实验都很成功-Gabor atoms is through the voice signal processing, matching pursuit algorithm is used, the program useful, on the simulation of various audio signals are successfully
  3. 所属分类:matlab

    • 发布日期:2015-05-11
    • 文件大小:9216
    • 提供者:miaoguijun
  1. mp_image_inpaiting

    0下载:
  2. 可实现对残缺图像的修复,应用了基于mp算法的图像稀疏分解思想。过程中考虑到了原子库原子的能量特性-Enables the restoration of fragmentary images, applications mp-based algorithm for image sparse decomposition ideas. The process of taking into account the characteristics of atomic energy of the atom
  3. 所属分类:Special Effects

    • 发布日期:2016-02-23
    • 文件大小:115090
    • 提供者:chenlei
  1. Atomizer

    0下载:
  2. 原子分解软件,包含各类字典(DCT,wavelet)-a software of atom decompose,including kinds of dictionaries(DCT,wavelet)
  3. 所属分类:Wavelet

    • 发布日期:2017-05-04
    • 文件大小:1166528
    • 提供者:王真
  1. ECN-28J60

    0下载:
  2. 正点原子的ecn 28j60 驱动程序,简单入门级-Punctuality atoms the ecn 28j60 driver, simple entry-level
  3. 所属分类:SCM

    • 发布日期:2017-11-05
    • 文件大小:442967
    • 提供者:钟沛洪
  1. lindemann-index

    1下载:
  2. 根据原子的坐标,计算体系里德曼因子的,可以看出体系的状态-According to the atomic coordinates to calculate the system Li Deman factor, we can see that the system state
  3. 所属分类:Algorithm

    • 发布日期:2014-04-16
    • 文件大小:1024
    • 提供者:
  1. List

    0下载:
  2. 单链表的基本操作,创建一个广义表+判空+显示+长度, 广义表的复制+插入+深度+删除+销毁,打印广义表中的原子。-The basic operation of a single list, create a generalized table+ empty+ show+ the length of sentence, the generalized form of the copy+ delete+ insert+ depth+ destruction, print generalized li
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:255592
    • 提供者:苏阳
  1. WaveAtom-1.1

    1下载:
  2. 波原子变换代码,一种新的类方向小波变换,更好的表示图像-Wave atom transform code, the direction of a new class of wavelet transform, and better representation of the image
  3. 所属分类:Graph program

    • 发布日期:2017-04-10
    • 文件大小:1403124
    • 提供者:xiachen
  1. 广义表的表头和表尾

    0下载:
  2. 广义表是线性表的推广。广义表是n个元素的有限序列,元素可以是原子或一个广义表,记为LS。 若元素是广义表称它为LS的子表。若广义表非空,则第一个元素称表头,其余元素称表尾。 表的深度是指表展开后所含括号的层数。 把与树对应的广义表称为纯表,它限制了表中成分的共享和递归; 允许结点共享的表称为再入表; 允许递归的表称为递归表; 相互关系:线性表∈纯表∈再入表∈递归表; 广义表的特殊运算:1)取表头head(LS);2)取表尾tail(LS) -generalized l
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:3328
    • 提供者:wr
  1. hibernate04

    0下载:
  2. Hibernate控制的事务 事务保证原子操作的不可分,也就是操作的同时成功或同时失败。-Hibernate to control the affairs of Service to ensure that atomic operations can not be separated, which is operated at the same time the success or failure at the same time.
  3. 所属分类:File Formats

    • 发布日期:2017-04-02
    • 文件大小:1812
    • 提供者:minfang
  1. pv

    0下载:
  2. 信号量也称为信号锁,主要应用于进程间的同步和互斥,在用于互斥时,通常作为资源锁。信号量通常通过两个原子操作wait(P)和signal(V)来访问。wait操作使信号量的值+1,signal操作使信号量的值-1。本程序模拟了操作系统的pv操作-Semaphore is also known as signal lock, mainly used in inter-process synchronization and mutual exclusion, are used in mutually
  3. 所属分类:OS Develop

    • 发布日期:2017-03-23
    • 文件大小:8179
    • 提供者:龙海
  1. pv2

    0下载:
  2. 信号量也称为信号锁,主要应用于进程间的同步和互斥,在用于互斥时,通常作为资源锁。信号量通常通过两个原子操作wait(P)和signal(V)来访问。wait操作使信号量的值+1,signal操作使信号量的值-1。本程序修改wait操作,使之能一次申请多个信号量-Semaphore is also known as signal lock, mainly used in inter-process synchronization and mutual exclusion, are used in
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:8944
    • 提供者:龙海
  1. two_dimension

    0下载:
  2. 二维匹配追踪算法,通过较少原子比较精确的重建图像,随着迭代次数提高逼近源图像。-Two-dimensional matching pursuit algorithm, through more precise atomic less reconstructed image, with the number of iterations to raise close to the source image.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-04
    • 文件大小:2347
    • 提供者:汪博峰
  1. rattle

    0下载:
  2. MD中rattle 算法,一般应用于固定原子键长和键角-the RATTLE method
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3316
    • 提供者:颜先生
  1. drawing

    2下载:
  2. 使用matlab绘制原子轨道图和电子云图-Drawing atomic orbital and electronic cloud using MATLAB
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:184251
    • 提供者:lifengya
  1. filmsgrowth

    0下载:
  2. 利用matla模拟薄膜生长,模拟原子入射到基板表面,气相吸附为固相,或者反射迁移的过程-Simulation of thin film growth using matla simulated incident to the substrate surface atoms, gas adsorption for the solid phase, or the process of reflection migration
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:2505
    • 提供者:雪峰
  1. mcs51chengxu

    0下载:
  2. 按当前流行的以 IBM PC 为主机的开发系统对汇编语言的规定,将原子程序库 的标号和位地址进行了调整,读者不必再进行修改,便可直接使用。-According to the popular IBM PC for the mainframe assembly language development system for the provisions of the Library of atomic-bit address label and have been adjusted, reade
  3. 所属分类:assembly language

    • 发布日期:2017-04-28
    • 文件大小:16507
    • 提供者:qz
  1. glist

    0下载:
  2. 采用表头表尾的存储方式,实现广义表的创建,求表头,表尾,长度深度,原子个数的操作-The end of the first table used in table storage means to achieve the creation of a broad sheet, and the first table, end table, the length of the depth of the operation of atomic number
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1587
    • 提供者:陈康
  1. theshortest

    1下载:
  2. 最短路径法分词程序.将中文句子经过原子切分后生成一个有向无环图,然后使用Dijkstra算法求出由起点到终点的-The shortest path segmentation process. After the Chinese sentence after splitting atoms to generate a directed acyclic graph, and then use the Dijkstra algorithm derived from the point of origi
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:426500
    • 提供者:wangzhen
« 1 2 3 4 56 7 8 9 10 ... 31 »
搜珍网 www.dssz.com