CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 Linux/Unix编程 搜索资源 - c/c 算法

搜索资源列表

  1. optimizebackpack

    0下载:
  2. 背包问题c算法实现,利用回溯法实现的背包问题详解,内附源代码即详细注解,以及一些优化的思想,很容易理解,是一个很好的算法,通过调试,可以运行。-knapsack problem c algorithm, using the retrospective method to achieve Hi knapsack problem, the source code that contains detailed notes, and some optimization thinking, it is e
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2.13kb
    • 提供者:xiaowei
  1. C4.5-C

    0下载:
  2. 这是数据挖掘分类算法中的C4.5算法的C实现版本,为Linux下的,希望对大家有所帮助。-This is the classification of data mining algorithms to the C4.5 algorithm to achieve the C version of Linux. We want to help.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:156.83kb
    • 提供者:cnjn
  1. Adpcm

    1下载:
  2. Adpcm压缩解压缩算法实现,应用于嵌入式linux平台,C/C++开发
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2.43kb
    • 提供者:方建国
  1. c-algorithms1.0.0.tar

    0下载:
  2. 常用的数据结构和算法函数库,比如集合、列表、树、队列、hash等。
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:332.66kb
    • 提供者:渡渡鸟
  1. 银行家算法 C

    0下载:
  2. 银行家算法
  3. 所属分类:Linux/Unix编程

    • 发布日期:2009-06-23
    • 文件大小:8.65kb
    • 提供者:conglins
  1. sound

    0下载:
  2. 此为PESQ算法在linux系统上的移植实现,包括Makefile,代码中包含有.wav文件。-This is the PESQ algorithm in achieving transplant on a linux system, including the Makefile, the code contains. Wav files.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:397.96kb
    • 提供者:lingyun
  1. wfq

    0下载:
  2. 在,linux下利用NS-2实现的网络里的队列调度算法WFQ,主要是C/C++实现-In, linux using NS-2 under the implementation of the network in the queue scheduling algorithm WFQ, mainly C/C++ implementation
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:7.12kb
    • 提供者:hujia
  1. c-hash

    0下载:
  2. C语言实现的哈希表算法,比链表的查询更快,在大量节点管理时很实用。-C-implemented hash table algorithm, faster than the query list, in the management of a large number of nodes is very useful.
  3. 所属分类:Linux-Unix program

    • 发布日期:2016-01-25
    • 文件大小:15kb
    • 提供者:黄健
  1. MD5算法

    0下载:
  2. MD5算法的例子--Example of MD5 algorithm
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-11-11
    • 文件大小:6.15kb
    • 提供者:站长
  1. cuncuqi

    0下载:
  2. 实现首次适应算法的动态分配过程alloc()和回收过程setfree()。其中,空闲分区通过空闲区说明表;在进行内存分配时,系统优先使用空闲区低端的空间。-Algorithm to achieve the first time to adapt to the dynamic allocation process alloc () and the recycling process setfree (). Among them, the idle through the free zone Zon
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:7.23kb
    • 提供者:machunyu
  1. 1

    0下载:
  2. c、c++比较算法利用c++写得比较常用的算法
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:664byte
    • 提供者:付良
  1. 2

    0下载:
  2. c c++利用c++写得比较常用的收索算法
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-10
    • 文件大小:628byte
    • 提供者:付良
  1. des3c

    0下载:
  2. c实现des3算法,可以进行加密和解密。功能强大,请期待。-c achieve des3 algorithm, can be encrypted and decrypted. Powerful, please look forward to.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-25
    • 文件大小:4.82kb
    • 提供者:xia
  1. algpre.c.tar

    0下载:
  2. 算符优先算法,北交编译原理书上源码的实现,书上的有错误-Operator priority algorithm, the North cross compiling principle source of the realization of the book, the book' s errors
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:1.37kb
    • 提供者:北交,计科
  1. c语言编译器源码

    1下载:
  2. ucc是一款遵从ANSI C89标准的编译器,大约15,000行C代码。目前支持x86平台上的 Linux和Windows系统,能正确编译自身并成功运行。它有下面一些特点: 1. 代码结构清晰直观,有比较详细的中文文档讲述它的实现 2. 使用三地址码作为中间码,构建了由基本块组成的控制流图,适合很多优化算法 3. 编译速度快。词法分析,语法分析和目标代码生成器都是手写的(其中的代码 生成器本想用burg这样的工具自动生成,但这样可能会给代码的理解带来难度, 最后手写了
  3. 所属分类:Linux/Unix编程

    • 发布日期:2014-10-21
    • 文件大小:371.14kb
    • 提供者:yangkui_happy
  1. linux-ccPP

    0下载:
  2. 主要是linux c/c++基础学习资料,像linux命令字详解,linux下编程环境,C/C++基础,数据结构算法等,由于资源较大,附有百度云链接和提取码,对linux C/C++初学者有帮助! -Based learning materials mainly Linux c/c++, like Linux command word explanation, under Linux programming environment, c/c++, data structure, algori
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:5.62kb
    • 提供者:李晨旭
  1. C++_编程思想

    0下载:
  2. 主要讲述计C++语言的的编程思想,编写流程,STL源码的过程(It mainly focuses on the programming thought of c ++ language, the process of writing process and STL source code)
  3. 所属分类:Linux/Unix编程

  1. RBTree

    0下载:
  2. 一个用c++实现的红黑树程序,包括了红黑树的所有过程(some algorithm of c++)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-01
    • 文件大小:8kb
    • 提供者:yanke1311
  1. fft4

    0下载:
  2. FFT及IFFT算法的C语言实现,信号发生器产生的正弦信号在通过该算法可以准确算出频率(The implementation of the FFT algorithm in the C language)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-10
    • 文件大小:2kb
    • 提供者:王小小小
  1. 小小日历c4droid源码C语言

    1下载:
  2. 天文算法万年历,基于寿星万年历js不完全移植,前后近一万年误差不超过一分钟(The astronomical calendar algorithm, the longevity of the calendar JS is not completely based on nearly ten thousand years before and after transplantation, the error is less than a minute)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-04-22
    • 文件大小:67kb
    • 提供者:千百度喵喵
« 12 3 4 5 6 7 »
搜珍网 www.dssz.com