CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - CHAR

搜索资源列表

  1. MD5加密的C++类

    0下载:
  2. 这是一个好用的MD5的C++类;这个类可以加在控制台 程序中也可用在MFC中, 并且提供了详细的错误处理 函数,是一个安全的类。例程是一个MD5的MFC程序, 支持字符串和文件两种输入。 LPCSTR TargetFile(char *filename=NULL) //计算文件的MD5值 void TargetStr(LPCSTR str) //计算字符串的MD5值 LPCSTR GetDigestKey() //取MD5运算后的结果 LPCSTR GetErr() //如果有错误,取错误字串
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4533
    • 提供者:俞训峰
  1. FrequencyScaleConversion

    0下载:
  2. Frequency Scale Conversion From f To f Scale frq2mel mel2frq mel The mel scale is based on the human perception of sinewave pitch. frq2erb erb2frq erb The erb scale is based on the equivalent rectangular bandwidths of the human ear. frq2mi
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:8122
    • 提供者:张一一
  1. SimulateCache

    0下载:
  2. cache: you will be given a char at will and you should simulate the computer s memory and cache .-cache : you will be given a char at will and you should sim ulate the computer's memory and cache.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:933
    • 提供者:张丽颖
  1. cyuanchengxu

    0下载:
  2. 函数模板T max(T a, T b, T c),使之实现对任何类型数,能从三个数中求出最大数返回。设计各种类型数据(char,short,long,float,double)调用此函数模板。-function template T max (T a, b T, T c), to enable it to achieve any of several types, a few were from the three sought to return to the greatest number.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:3044
    • 提供者:gongwen
  1. Expression-D.S.Report2

    0下载:
  2. 数据结构课程设计报告,算术表达式求值,自动辨别算符优先级,括号,将char型转换成int计算,再将结果显示,具有精美用户界面-data structure curriculum design, arithmetic expression evaluates automatically identify operator precedence, in brackets, char to int conversion type, the result shows that the user inte
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:234832
    • 提供者:
  1. shu2

    0下载:
  2. 2.[问题描述] 编写递归算法,在二叉树中求位于先序序列中第K个位置的结点 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g 。输入要求的位置 [输出] 若二叉树不空,按先序序列输出,求出所求位置的结点 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,先序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点并计算出二叉树中叶子结点
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:7096
    • 提供者:Demonic
  1. XMLlToolbox2

    0下载:
  2. The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >>
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:214576
    • 提供者:leiming691128
  1. 7MethodsOfQsort

    0下载:
  2. 快速排序(qsort)在程序开发中的七种用法(VC)。其中列举了对int和char型数组排序、结构和类的一级二级排序等,具体的cmp函数。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:28220
    • 提供者:sql
  1. Text

    2下载:
  2. 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1582
    • 提供者:zhudong
  1. c

    0下载:
  2. #include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h> #include<io.h> #include<math.h> #include<process.h> #include<conio.h> #define m 100 #define OK 1 typedef
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2243
    • 提供者:全文
  1. lcs(continue)

    0下载:
  2. LCS,即最常公共子序列的的C语言解法。prepare_for_backdate(char,char,int,int)函数是为后面的回溯法求得最长公共子序列做准备,并可得到子序列长度。lcs(char,int,int)函数是输出子序列的。并用到了第一个函数的结果。因为要得到最终的子序列,要知道那些地方是可输出的位置,因此构造数组b[][],当为1时表明当前位置匹配,可输出,为2时需要往上回溯,为3时需要往左回溯,直到找到下一个为1的位置。而c[][]数组是保存找子序列过程中匹配位数。
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:738514
    • 提供者:向冬冬
  1. bp-char

    0下载:
  2. 基于神经网络的字符识别系统, 对数字,字母都可以识别
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:45055
    • 提供者:凉水
  1. CRC

    0下载:
  2. 数组为8位char型数值,通过该函数可以计算出数组的16位循环校验码。
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:8910
    • 提供者:刘中
  1. char2CString

    0下载:
  2. char和CString之间赋值的问题,包含char* 转化成 CString,CString 转化成 char* ,BSTR 型转化成 CString 型等等。-between the char and CString assignment problem with char* into a CString, CString into a char*, BSTR type into CString type and so on.
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:15209
    • 提供者:lizhiqian
  1. bp_neural_network-char

    0下载:
  2. BP神经网络字符识别源程序, 可编译执行,有很好的参考价值。-BP neural network char indentical source code . Building executable program available
  3. 所属分类:AI-NN-PR

    • 发布日期:
    • 文件大小:314096
    • 提供者:kate
  1. matlab-sym-char-num

    0下载:
  2. matlab sym格式转换成char型和数值型的简易算法-sym convert to char or num simple algorithm
  3. 所属分类:matlab

    • 发布日期:2017-03-21
    • 文件大小:2521
    • 提供者:Liu Kevin
  1. digital-char-recognize-besedon-bp

    0下载:
  2. 基于神经网络的手写识别,识别的精确度很高,包含所有资源。-digital char recognize based on bp netware
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-24
    • 文件大小:819385
    • 提供者:liangliang
  1. Ascii-Char

    0下载:
  2. ascii char conversion
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:4786
    • 提供者:dario
  1. calculate-number-of-char

    0下载:
  2. 键盘输入,计算字符串中数字,字母的个数,并在窗口返回现实数字-keyboard input,calculate the number of number and char of the char group
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:947
    • 提供者:吴旭
  1. 跨模态文字检索图片102花卉数据

    1下载:
  2. 跨模态检索 tensorflow实现,使用googlenet处理图片,char-cnn处理文字,使用triple-loss训练(Tensorflow is implemented by cross-modal retrieval, using Google eNet to process pictures, char-cnn to process text, and triple-loss training)
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2020-04-29
    • 文件大小:8192
    • 提供者:yujk123
« 12 3 4 5 6 »
搜珍网 www.dssz.com