您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 模拟退火算法解TSP问题C++版

  2. 模拟退火算法求解TSP问题 #include #include #include #include #include using namespace ::std; const int MAX_CITY_SIZE = 100;//最大城市个数 int n; //城市个数 int dist[MAX_CITY_SIZE][MAX_CITY_SIZE];//距离矩阵 int cur_path[MAX_CITY_SIZE];//当前解 int exd_path[MAX_CITY_SIZE];/
  3. 所属分类:其它

    • 发布日期:2009-05-23
    • 文件大小:11264
    • 提供者:seal66530
  1. 简单易懂的词法分析器。

  2. 程序#include #include #include #include #include #include #include using namespace std;
  3. 所属分类:iOS

    • 发布日期:2009-06-09
    • 文件大小:7168
    • 提供者:linp20080825
  1. 通讯录说明书(带源程序)

  2. 这是我自己做的说明书 还可以吧 #include #include #include #include #include using namespace std; class book { public: book();//默认构造函数 char inter_face();//首页 void add_person();//添加联系人 void del_person();//删除联系人 void show_all();//显示所有联系人 void alter();//修改信息
  3. 所属分类:iOS

    • 发布日期:2009-10-15
    • 文件大小:80896
    • 提供者:winter13292
  1. C++快速排序(的是规范萨菲)

  2. #include using std::cin; using std::cout; using std::endl; #include #include #define NUM 10 int Array[NUM]; void CreatNum() { srand((unsigned) time(0)); for(int i = 0; i < NUM; i++) { Array[i] = rand()%NUM; cout << Array[i] << " ";
  3. 所属分类:iOS

    • 发布日期:2009-10-24
    • 文件大小:1024
    • 提供者:owensev
  1. clibsource C标准库源代码

  2. 介绍说明 C标准库源代码,能提高对C的理解,不错的哦 下载文件列表 Pack : clibsource.rar C标准库源代码\ABORT.C C标准库源代码\ABS.C C标准库源代码\ACCESS.C C标准库源代码\ADJUSTFD.C C标准库源代码\ALGRITHM C标准库源代码\ASCTIME.C C标准库源代码\ASSERT.C C标准库源代码\ASSERT.H C标准库源代码\ATOF.C C标准库源代码\ATONEXIT.C C标准库源代码\ATOX.C C标准库源代码\A
  3. 所属分类:C

    • 发布日期:2009-11-16
    • 文件大小:1048576
    • 提供者:edzjx
  1. C++ 小型复数计算器

  2. #include #include #include #include #include #include #define EPS 1e-5 //定义精度常数 using namespace std; //使用标准空间命名std namespace NameCComplex //定义命名空间NameCComplex { class CComplex ////定义一个CComplex类 { private: double Real,Image; public: CComplex(double r
  3. 所属分类:iOS

    • 发布日期:2009-12-02
    • 文件大小:11264
    • 提供者:Librawei
  1. 学生成绩管理系统C++

  2. 相当不错的一个成绩管理系统 #include #include #include #include using namespace std; enum {SUBJECT=5};//一共五门 typedef struct { char subject[10];//科目名称 int score;//科目成绩 }markinfo; typedef struct studentnode { markinfo mark[SUBJECT]; int totalmark; char name[10];//学
  3. 所属分类:iOS

    • 发布日期:2009-12-12
    • 文件大小:991232
    • 提供者:ljr915
  1. 用C++解决迷宫问题

  2. 有迷宫问题的详细代码和解决思路 #include #include #include #include #include using namespace std; struct Intersection//迷宫交叉点的定义 { int left;//向左指针 int forward;//向前指针 int right;//向右指针 };
  3. 所属分类:C++

    • 发布日期:2009-12-25
    • 文件大小:2097152
    • 提供者:xishanchen
  1. 实验三 算术表达式求值演示

  2. 演示用算符优先对算法表达式求值的过程#include #include #include using namespace std; typedef int ElemType; const int STACK_INIT_SIZE=100; const int STACKINCREMENT=10;
  3. 所属分类:其它

    • 发布日期:2010-01-06
    • 文件大小:25600
    • 提供者:zhyy1234
  1. opencv联合cuda进行图像混合

  2. opencv联合cuda进行图像混合1#include 2#include 3#include 4#include 5#include 6#include 7#include 8#include 9#include
  3. 所属分类:iOS

    • 发布日期:2010-01-10
    • 文件大小:6144
    • 提供者:wulin031024
  1. 本人精心收集,c++头文件一览

  2. 本人收集: C/C++头文件一览 C、传统 C++ #include     //设定插入点 #include      //字符处理 #include      //定义错误码 #include      //浮点数处理 #include     //文件输入/输出 #include     //参数化输入/输出 #include    //数据流输入/输出 #include     //定义各种数据类型最值常量 #include     //定义本地化函数 #include      //
  3. 所属分类:C++

    • 发布日期:2010-01-13
    • 文件大小:3072
    • 提供者:wpt_007
  1. C和C++头文件对比一览

  2. C、传统 C++ #include     //设定插入点 #include      //字符处理 #include      //定义错误码 #include      //浮点数处理 #include     //文件输入/输出 #include     //参数化输入/输出 #include    //数据流输入/输出 #include     //定义各种数据类型最值常量 #include     //定义本地化函数 #include      //定义数学函数 #include  
  3. 所属分类:C++

  1. C++ Standard Library

  2. Table of Contents Preface Acknowledgments 1. About this Book 1.1 Why this Book 1.2 What You Should Know Before Reading this Book 1.3 Style and Structure of the Book 1.4 How to Read this Book 1.5 State of the Art 1.6 Example Code and Additional Infor
  3. 所属分类:C++

    • 发布日期:2010-02-03
    • 文件大小:4194304
    • 提供者:luoweijiangcom
  1. C语言数值算法程序大全

  2. 史无前例的全,很实用。看了就知道。 #include #include #include #include #include "nr.h" using namespace std; namespace { inline DP alen(const DP a, const DP b, const DP c, const DP d) { return sqrt((b-a)*(b-a)+(d-c)*(d-c)); } } void NR::anneal(Vec_I_DP &x, Vec_I_
  3. 所属分类:C

    • 发布日期:2010-04-04
    • 文件大小:410624
    • 提供者:haotongzhi
  1. C标准库源代码(学习C/C++必备)

  2. 介绍说明 C标准库源代码,能提高对C的理解,不错的哦 下载文件列表 Pack : clibsource.rar C 标准库源代码\ABORT.C C标准库源代码\ABS.C C标准库源代码\ACCESS.C C标准库源代码\ADJUSTFD.C C标准库源代码\ALGRITHM C标准库源代码\ASCTIME.C C标准库源代码\ASSERT.C C标准库源代码\ASSERT.H C标准库源代码\ATOF.C C标准库源代码\ATONEXIT.C C 标准库源代码\ATOX.C C标准库源代码
  3. 所属分类:C

    • 发布日期:2010-04-09
    • 文件大小:1048576
    • 提供者:zzb980881
  1. C标准库文档,包括标准库中12个头文件的描述

  2. cstdlib 的描述文档 * : Diagnostics * : Character Class Tests * : Error Codes Reported by (Some) Library Functions * : Implementation-defined Floating-Point Limits * : Implementation-defined Limits * : Locale-specific Information * : Mathematical F
  3. 所属分类:C++

    • 发布日期:2010-04-13
    • 文件大小:72704
    • 提供者:xxy04
  1. 香农编码,非常清楚的

  2. #include #include #include #include using namespace std; struct huang { double p; char s[50]; int n; } ; 部分代码
  3. 所属分类:iOS

    • 发布日期:2010-06-26
    • 文件大小:2048
    • 提供者:daiyudong2008
  1. C标准库源代码(学习C/C++必备)

  2. 介绍说明 C标准库源代码,能提高对C的理解,不错的哦 下载文件列表 Pack : clibsource.rar C 标准库源代码\ABORT.C C标准库源代码\ABS.C C标准库源代码\ACCESS.C C标准库源代码\ADJUSTFD.C C标准库源代码\ALGRITHM C标准库源代码\ASCTIME.C C标准库源代码\ASSERT.C C标准库源代码\ASSERT.H C标准库源代码\ATOF.C C标准库源代码\ATONEXIT.C C 标准库源代码\ATOX.C C标准库源代码
  3. 所属分类:C

    • 发布日期:2010-08-03
    • 文件大小:1048576
    • 提供者:xteep2009
  1. STL入门参考(英文版)

  2. The C++ Standard Library dyne-book 3 Table of Contents Preface Acknowledgments 1. About this Book 1.1 Why this Book 1.2 What You Should Know Before Reading this Book 1.3 Style and Structure of the Book 1.4 How to Read this Book 1.5 State of the Art
  3. 所属分类:C++

    • 发布日期:2010-08-07
    • 文件大小:4194304
    • 提供者:liwenkun
  1. C++ Standard Library A.Tutorial.and.Reference

  2. The C++ standard library provides different components that are somewhat but not totally independent of each other, so there is no easy way to describe each part without mentioning others. I considered several different approaches for presenting the
  3. 所属分类:C++

    • 发布日期:2010-09-26
    • 文件大小:3145728
    • 提供者:shaoguangleo
« 12 3 4 5 »