CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载

资源列表

« 1 2 ... .26 .27 .28 .29 .30 9131.32 .33 .34 .35 .36 ... 199244 »
  1. ColisionPDetectionPforPAnimation

    1下载:
  2. c++写的一个基于八叉树的动态碰撞检测实例-c++ to write a dynamic octree-based collision detection example
  3. 所属分类:Data structs

    • 发布日期:2014-10-27
    • 文件大小:4.01mb
    • 提供者:德曼
  1. hellow4

    1下载:
  2. 序列二次规划算法,能求解包含约束和无约束的问题,非常方便。-Sequential quadratic programming algorithm to solve constrained and unconstrained contain the problem, very convenient.
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:4.69kb
    • 提供者:晓明
  1. ring-buffer

    1下载:
  2. 在通信程序中,经常使用环形缓冲区作为数据结构来存放通信中发送和接收的数据。环形缓冲区是一个先进先出的循环缓冲区,可以向通信程序提供对缓冲区的互斥访问-In the communications program, frequently used as a ring buffer data structure to store communications to send and receive data. FIFO ring buffer is a circular buffer, the com
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-11-28
    • 文件大小:33.97kb
    • 提供者:江立
  1. 1

    1下载:
  2. 用双向链表实现约瑟夫问题,c++开发实现,数据结构 小孩个数可变;数数间隔可变;起始位置可变;数数方向可变-Joseph with a doubly linked list implementation issues, c++ development to achieve, the number of children variable data structure count interval variable starting position variable count direc
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.5kb
    • 提供者:whczc
  1. tubao

    1下载:
  2. 凸包算法,根据鼠标点出来的点来画凸多边形。-Convex hull algorithm, according to the mouse point to draw out of the convex polygon.
  3. 所属分类:Data structs

    • 发布日期:2015-09-23
    • 文件大小:1.87mb
    • 提供者:LiangTreeMan
  1. flann-1.6.11-src

    1下载:
  2. 快速计算近似最近邻域,可用于图形处理中计算点云的k-Quickly compute approximate nearest neighbor, can be used for graphics processing point cloud computing knn
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:486.44kb
    • 提供者:黄锦芳
  1. A_star

    1下载:
  2. c++实现的A*寻路算法,供菜鸟学习之用,老鸟无视之。-c++ implementation of the A* pathfinding algorithm for the rookie learning, fields and ignore it.
  3. 所属分类:Data structs

    • 发布日期:2015-04-27
    • 文件大小:1.28mb
    • 提供者:张晓一
  1. yinbiwenti

    1下载:
  2. 在n个银币中有一个是不合格的,不合格的银币比合格银币要轻。 现用天平秤银币,找出不合格的银币,且在最坏情况下秤银币的次数最少 -In n silver in one is unqualified, not qualified silver qualified to light than silver. Now in the balance scale, and find out the unqualified silver coin, and in the worst c
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:133.05kb
    • 提供者:王绍华
  1. fenpai

    1下载:
  2. 背景 游戏公司老板准备开发一个人机交互的打牌游戏,项目组里每个人都分配了不同的工作。你现在负责的模块就是为计算机设计一个分牌程序,帮助计算机像人一样可以把分到的牌进行分类。 众所周知,一副扑克牌有四种花色(即方块、梅花、红桃和黑桃)和14个分值级别(即二、三、四、五、六、七、八、九、十、J、Q、K和A)。这里假设A是分值最高级别的。 程序每次读取一手五张牌,然后根据下列类别把手中的牌分类(列出的顺序依次是从最好类别到最坏类别): Straight flu
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:12.45kb
    • 提供者:vengeance
  1. bolanjisuanqi

    1下载:
  2. 背景 以下是几个标准的表达式: 5 * 2 + -3 5 * (2 + -3) 5 + ((-4 * -5) + (((5 + (6 - 2)) * 7 + ((4 + 2) * (3 - 1)))) 与之等价的波兰表达式为 + * 5 2 -3 * 5 + 2 -3 + 5 + * -4 -5 + * + 5 - 6 2 7 * + 4 2 - 3 1 在普通的表达式中,符号是位于运算对象之间的,而在波兰表达式中,运算符号位于参
  3. 所属分类:Data structs

    • 发布日期:2015-09-27
    • 文件大小:17kb
    • 提供者:vengeance
  1. list

    1下载:
  2. (1)输入一组整型元素序列,建立顺序表。 (2)实现该顺序表的遍历。 (3)在该顺序表中顺序查找某一元素,查找成功返回1,否则返回0。 (4)判断该顺序表中元素是否对称,对称返回1,否则返回0。 (5)实现把该表中所有奇数排在偶数之前,即表的前面为奇数,后面为偶数。 (6)输入整型元素序列利用有序表插入算法建立一个有序表。 (7)利用算法6建立两个非递减有序表并把它们合并成一个非递减有序表。 (8)编写一个主函数,调试上述算法。-(1) enter a sequenc
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1.66kb
    • 提供者:oky
  1. graph

    1下载:
  2. 数据结构实验六图的操作,在程序中提示输入的顶点数以及每两条边之间的权值,最后使用深度优先和广度优先算法实现遍历,同时构建最小耗费生成树的最小权值和路径。-Experimental data structure diagram of the operation of six, in the program prompts for the number of vertices and edges between every two weights, the final depth-first and
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1.16mb
    • 提供者:敏敏特穆尔
« 1 2 ... .26 .27 .28 .29 .30 9131.32 .33 .34 .35 .36 ... 199244 »
搜珍网 www.dssz.com