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

资源列表

« 1 2 ... .03 .04 .05 .06 .07 25208.09 .10 .11 .12 .13 ... 28275 »
  1. 编写一个函数单词逆序存放

    0下载:
  2. 编写一个函数InverseByWord(char *sentence), 实现一个英文句子按单词逆序存放的功能,并给出测试程序。(50分) 如:This is an interesting programme. 逆序后变为:.programme interesting an is This-Write a function InverseByWord (char* sentence), to achieve an English sentence by the word st
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-22
    • 文件大小:622
    • 提供者:qianfan
  1. yuesefuhuan

    0下载:
  2. 约瑟夫环链式结构顺序结构实现 以及青蛙跳问题 和首尾相接换实现问题汇总-Josephus chain structure algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:2799
    • 提供者:litian
  1. FIFO-LFU

    0下载:
  2. 用C语言实现操作系统请求页面调度算法FIFO LFU的实现 提前装入0,5,6页最后能够计算出缺页中断率-Operating system using C language the page is requested the implementation of scheduling algorithms FIFO LFU advance into 0,5,6 page last page fault rate to calculate the vacancy
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:2170
    • 提供者:sunying
  1. queen

    0下载:
  2. 八皇后问题。利用了递归算法,很是巧妙!最后一行为输出解的个数,每行共8个数字,这些数字即代表皇后在该行的位置。-It s a code about Eight queen.
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:942
    • 提供者:洛菲雨
  1. expression

    0下载:
  2. 用C语言版 编写一个表达式求值演算的 算法程序 要求:使用栈,需要将算法的过程显示出来 ,输入一连串算术值 如:2*(3+2)# 然后 显示出算术过程 和结果!先将输入的中缀 转换后缀 再求值 程序中使用两个栈! 可以在VC++ 中运行- A linear epitope recognized by both MAbs,c2410 and WH303,which has strong specificity of CSFV,has been precisely defined and l
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1968
    • 提供者:占冬冬
  1. calculator.zip

    0下载:
  2. 表达式计算器。表达式中只能有圆括号、函数名、运算符、常数与变量。一、变量名的命名规则:1、可以是字符、或字符串 2、不能以数字开头 3、不能夹杂有空格、运算符或标点符号,以及以下字符:\、|、=、&、%、$、@、#、`、~.二、函数有sin、cos、tan、cot、sqrt、asin、acos、atan、log,均需要小写。函数后的变量名可以加括号,也可以不要括号,如:log(C1)与logC1是相同的。三、运算符有+(加)、-(减)、*(乘)、/(除)与^(幂次)。,Expression ca
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:49543
    • 提供者:YHC
  1. DP.rar

    0下载:
  2. 最长路径DP算法 根据邻近矩阵,再运用DP算法计算出图中任意节点间的最长路径,有点类似于最短路径算法,DP algorithm for the longest path in accordance with the neighboring matrix, re-use of DP algorithm to calculate arbitrary graph the longest path between nodes, somewhat similar to the shortest path
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:1976
    • 提供者:yuxiqian
  1. 数据结构书中程序的代码实现

    0下载:
  2. 配合严蔚敏的数据结构的辅导书,内有书中程序的代码实现——高一凡所著的数据结构算法解析的第三章栈和队列。,YAN Wei-Min with the data structure of the counseling book, there are procedures code book- written by high and one where the data structure parsing algorithm Chapter III stack and queue.
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-23
    • 文件大小:17221
    • 提供者:wujiawei
  1. kthread_create

    0下载:
  2. 该函数创建,但并不启动线程,创建完后要通过wake_up_process启动-This function creates, but does not start the thread, create after start through wake_up_process
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2655
    • 提供者:pxxxb
  1. Dijkstra

    0下载:
  2. 这个例程,会在多条相同最短路径中选出边数最少的路径.只是改变path域即可在遍历的时候访问到边数少的路径.核心的思想,就是建立一个数组,存放从出发点到当前顶点的最短路径边数.通过每次查看最短路径相同的情况, 即dv + cvw = dw.时,如果 Count[v] + 1 < Count[w]时,就执行 Count[w] = Count[v] + 1, 同时 w -> path = c.-This routine will be the same number of shortest
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:885
    • 提供者:php0
  1. bmsearch_src.zip

    0下载:
  2. BM关键字查找算法,在用于查找子字符串的算法当中,BM(Boyer-Moore)算法是目前相当有效又容易理解的一种,一般情况下,比KMP算法快3-5倍。,BM keyword search algorithm used in the sub-string search algorithm which, BM (Boyer-Moore) algorithm is quite effective and easy to understand A, under normal circumstances
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:10523
    • 提供者:jiangjun
  1. uva705-Slash-Maze-

    0下载:
  2. uva705 Slash Maze 的代码,在UVaOJ上通过-uva705 Slash Maze of the code, adopted in UVaOJ
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:814
    • 提供者:wuli
« 1 2 ... .03 .04 .05 .06 .07 25208.09 .10 .11 .12 .13 ... 28275 »
搜珍网 www.dssz.com