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

搜索资源列表

  1. c++const

    0下载:
  2. C++中定义常量以及一些语法规则,由于C++中规则较为烦琐,所以代码中也加了一定注释,可以参考一下-C defined constants and some grammar rules, because C is more cumbersome rules, the code also increases to a certain notes for reference
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2.98kb
    • 提供者:亿摆
  1. __const

    0下载:
  2. const是C++中很常用而且很灵活的一种变量,学好使用const对变成很有帮助-C is a very common and a very flexible variables, the study into the use of const helpful
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5.62kb
    • 提供者:亿摆
  1. AFEPack.tar

    3下载:
  2. 主要特点 * Flexible finite element space construction based template element library 基于模板单元库灵活的构造有限元空间 * Convenient facilities to implement mesh adaption 很方便的进行网格加密和稀疏化 * Multi-mesh operation supported 支持多套网格操作 需要有一定的有限元基础和C++语言
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:987.49kb
    • 提供者:刘易
  1. neipaixu

    0下载:
  2. [问题描述] 将N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N) [输入] 待排序记录个数,各关键字的值。 [输出] 关键字从正负分开,正数在前 [存储结构] 待排序记录顺序存储。 [算法的基本思想] 快速排序算法每次任取一个记录的关键字为标准,将其余记录分为两组将,N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前。 #in
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:7.42kb
    • 提供者:Demonic
  1. 51个城市的tsp程序

    1下载:
  2. 这是一个用蚁群算法来解决51个城市的tsp问题,该源码是用C++编写的,是一个非常有用的源代码 const int iAntCount=34;//ant numbers 蚂蚁数量 const int iCityCount=51;//城市数量 const int iItCount=500;//循环次数 const double Q=100;//信息素总量
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2012-03-17
    • 文件大小:1.54kb
    • 提供者:cuifangsong
  1. ssd7exercise5

    0下载:
  2. 1,实现stl模型的优先队列; 2,实现所有声明的函数 关键内容: 1新建的类:bid:Class Bid models a bid placed on an advertisement. 2Changes to class Advertisement:要存放所有 竞拍他的用户信息,并根据他们放到优先队列中。 重要方法: priority_queue<Bid>& Advertisement::getBids(void) vector<Bi
  3. 所属分类:STL

    • 发布日期:2017-05-02
    • 文件大小:654.07kb
    • 提供者:邹斌
  1. include

    0下载:
  2. 定义一个栈,并实现栈的基本操作: void Push( const T& x) // bool Pop(T& x) // bool getTop(T& x) const // ostream& operater<<(ostream& os, Stack<T>& s) //overload -The definition of a stack, and to achieve the basic operation of the stack: void P
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:3.03kb
    • 提供者:XJK
  1. ssd5__adsasdsdexa1

    0下载:
  2. c++数据结构 ssd5的答案 很有用 保证正确 很有用 我亲自写的-#include "car.h" Car::Car(string plate) : license_plate(plate), moved(0), aisle(-1) {} Car::Car(string plate, int aisle) : license_plate(plate), moved(0), aisle(aisle) {} in
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:7.63kb
    • 提供者:linchen
  1. cv3

    0下载:
  2. struct Edge { Edge(int from, int to, int cost) : from(from), to(to), cost(cost) {} friend bool operator<(const Edge& a, const Edge& b) { if (a.cost != b.cost) { return a.cost > b.cost }
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-01
    • 文件大小:3.37kb
    • 提供者:65400
  1. cv4

    0下载:
  2. Edge(int from, int to, int cost) : from(from), to(to), cost(cost) {} friend bool operator<(const Edge& a, const Edge& b) { if (a.cost != b.cost) { return a.cost > b.cost }
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-07
    • 文件大小:743byte
    • 提供者:65400
  1. cv6

    0下载:
  2. Edge(int from, int to, int cost) : from(from), to(to), cost(cost) {} friend bool operator<(const Edge& a, const Edge& b) { if (a.cost != b.cost) { return a.cost > b.cost }
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-01
    • 文件大小:2.45kb
    • 提供者:65400
  1. cv7

    0下载:
  2. Edge(int from, int to, int cost) : from(from), to(to), cost(cost) {} friend bool operator<(const Edge& a, const Edge& b) { if (a.cost != b.cost) { return a.cost > b.cost }
  3. 所属分类:Algorithm

    • 发布日期:2017-04-25
    • 文件大小:10.4kb
    • 提供者:65400
  1. deg-const-mst-00850653

    0下载:
  2. degree constraint minimum sppaning tr-degree constraint minimum sppaning tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:178.2kb
    • 提供者:khatere
  1. tot-asp-scan

    0下载:
  2. 增加了对ifr a me,scr ipt的检查,可以恢复被大量置入ifr a me的网页。免得手动去删除的麻烦。 virus_lib.asp增加了对ifr a me,scr ipt的控制参数分别为: Const removeifr a me=true 是否检查ifr a me Const ifr a meKey="3322" ifr a me 中的关键字,如果出现系统将自动清除 Const removescr ipt=true 是否检查scr ipt Con
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-24
    • 文件大小:6.65kb
    • 提供者:cctcc2
  1. shouxieshibie

    0下载:
  2. 上午上课在稿纸上画了半天,整理下思路,下午动手写的,所有模块已大概成型,本着照顾后学者,以及资源共享的原则,贴上核心的bp算法部分,已经封装好了,使用可以直接调用。三层,基本三层就可以解决我们的这些简单的问题,输入为8×8,输出4,隐层数目conts num=8 还可进一步封装,const输入层节点,输出层节点。-Morning class in the writing paper drew a long time, under the idea of finishing the afterno
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-30
    • 文件大小:1.85kb
    • 提供者:杨元龙
  1. Lave1

    0下载:
  2. #include <iostream> #include <stdlib.h> #include <string.h> using namespace std const kl = 4, kzs = 2, m = 6, n = 4, Error = 5 char *K[kl] = {{"01"},{"bB"},{"23456789ACDEFacdef"},{"hH"}} int A[m][n] = {{1,2,2
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:822.57kb
    • 提供者:Andrew
  1. chazhi

    0下载:
  2. Romberg,用户计算椭圆周长,const double PI=3.14159265359 -Romberg, users elliptic perimeter, const double PI = 3.14159265359
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:521byte
    • 提供者:oliver
  1. 6spline

    0下载:
  2. 返回系数估计向量;stats返回各种参数估计;’wfun’指定一个加权函数;tune为调协常数;’const’的值为’on’(默认值)时添加一个常数项;为’off ’时忽略常数项-Return coefficient estimate vector stats back to a variety of parameter estimation ' wfun' to specify a weighting function tune for the co-ordination
  3. 所属分类:matlab

    • 发布日期:2017-04-16
    • 文件大小:9.84kb
    • 提供者:xiaowei
  1. const

    0下载:
  2. 关于const的用法,讲的很详细,还有对比,适合新手。-The use of const, speaking in great detail, as well as contrast, suitable for novice.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:1.07kb
    • 提供者:林嘉诚
  1. CONST-Program

    0下载:
  2. Const Programs computer numerial methods progam in c
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:97.13kb
    • 提供者:nirav
« 12 3 »
搜珍网 www.dssz.com