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

搜索资源列表

  1. card24

    0下载:
  2. 可以进行分数的24点运算的,因为里面还额外实现了一个分数类。24点必须用VC编译,GCC编译会有问题,这个bug当时没找出来。可能是默认堆栈大小的问题。这个程序从我现在看来,写得很差。-can score 24 points in computing, because it has achieved an additional category scores. 24 points to be compiled with VC, the GCC compiler will create probl
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:15.05kb
    • 提供者:
  1. mpich2-1.0.3.tar

    0下载:
  2. mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境-mpi parallel computing available vc c code or compile gcc structures can be used to test parallel computing environment
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:11.6mb
    • 提供者:zzf
  1. h264_msvc_build

    0下载:
  2. 我自己做的ffmpeg的h264的decoder的vc++6.0的完整源代码(一个补丁和一个附加的vc工程目录),使用方法在压缩包内。 所依据的版本是2007.1.19 checkout的,修改后的vc版本运行速度与MinGW+gcc编译的最高运行速度基本相当(+/-2%)。 只能使用intel编译器,vc自带的编译器效率太低。 给我加点技术分吧!!!! -I do ffmpeg the h264 the decoder vc 6.0 of the integrity of the
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:12.41kb
    • 提供者:qgfhit
  1. longestCommonSeq

    0下载:
  2. 最长公共序列的C源码,随机生成字符串,GCC编译通过。-public longest sequence of C source code, randomly generated string GCC compile.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.03kb
    • 提供者:宋达
  1. Numeric

    0下载:
  2. 用概率算法计算pi的值,linnux环境下使用gcc编译后运行
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:800byte
    • 提供者:李士
  1. hashtable

    0下载:
  2. 一个哈希查找算法,用c实现, gcc编译 如果使用vs可能会提示少stdint.h-A hash search algorithm, with c and gcc compiler to achieve, if you are using VS , you may get a "can t find stdint.h",
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:4.65kb
    • 提供者:qz
  1. project

    0下载:
  2. GNU prolog的数理逻辑课程设计,海洋生物识别专家系统,GNU prolog+GCC下编译通过-GNU prolog of mathematical logic course design, marine life identification expert system, compiled by GNU prolog and GCC
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-14
    • 文件大小:5.02kb
    • 提供者:冯帅
  1. astar

    0下载:
  2. 这是一个用C++编写的迷宫路径查找程序,使用GCC编译,用VC++也可以编译。程序使用A*算法,A*算法在人工智能领域是非常经典的算法,本程序对于学习A*算法非常有用。-This programme is wroten by C++, using GCC compile it.The algorithm is A*,syntax is C++.A* algorithm is classic algorithm when you learning AI.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-08
    • 文件大小:159.39kb
    • 提供者:wang
  1. net

    0下载:
  2. 用c写的BP神经网络人脸识别,可以识别姿势,表情,是否带太阳镜。gcc下执行通过,其中含有说明文件,注意编译和执行时放好文件夹的路径-C write with the BP neural network face recognition, can recognize gestures, facial expressions, whether with sunglasses. performed by gcc, which contains documentation, pay attention
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-27
    • 文件大小:10.01mb
    • 提供者:wanglei
  1. people2d.tar

    0下载:
  2. 根据测距仪数据提取人体的代码。使用ada-boost分类器实现。同时包含matlab的实现,在linux下GCC编译。 作者:Luciano Spinello-People2D provides an efficient implementation of the people detector in 2D data originally developed in Human Detection using Multimodal and Multidimensional Features (
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-06-14
    • 文件大小:20.56mb
    • 提供者:Wilford
  1. Btree

    0下载:
  2. B树的C++实现代码,实现了插入,删除,查找的功能,在VS2008和GCC下通过编译。 B树的实现代码在Btree.h里,TestBtree.cpp是一个非常简单的测试-Implementation code of the Btree
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1.73mb
    • 提供者:shuho
  1. array

    0下载:
  2. array接口,提供了动态数组的接口和实现,内有array.c为实现array.h为接口以及makefile。可在gcc下编译通过-array interface and implementation
  3. 所属分类:Data structs

    • 发布日期:2017-11-16
    • 文件大小:1.12kb
    • 提供者:zeropointer
  1. 5th_graph0518cg.tar

    0下载:
  2. 图的邻接矩阵跟邻接表的创建,遍历等,核心是深度优先遍历DFS和广度优先遍历BFS,其中广度优先遍历使用了队列,bfs写了两种方式,详情可以查看注释。使用gcc编译,-Adjacency matrix with the adjacency list creation, traversal, depth-first traversal of the core DFS and breadth-first traversal BFS, breadth-first traversal which uses
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:10.08kb
    • 提供者:chen
  1. cycleList

    0下载:
  2. 一个简易的环形链表程序,支持插入、查找、删除等基本操作,风格简约,gcc下编译通过-A simple circular linked list that supports insert, search, delete, and other basic operations, simple style, gcc compiler through
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3.45kb
    • 提供者:Xie Guannan
搜珍网 www.dssz.com