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

搜索资源列表

  1. 帮忙调试一下程序,怎么用c#算不出来最优解?谢谢

  2. #include #include #define M 27 #define N M-1 //N个垃圾集中点 int sum[M]; //sun[i]表示第i个垃圾集中点的横纵坐标和 int sort[M]; int visit[M]; //visit[i]表示第i个垃圾集中点的访问情况 int final=0; int L[M][M]; //表示第i个垃圾集中点到第j个垃圾集中点的距离 int m,vmin,u; double weight; typedef struct node{ dou
  3. 所属分类:C#

    • 发布日期:2009-05-10
    • 文件大小:114688
    • 提供者:a8200128
  1. 职工管理系统c 语言版

  2. #include #include #include #include const int N=100; typedef struct employee//职工基本情况 { int num;//工号 int position;//职位1为董事长2为总经理3为副总经理等 char name[8];//姓名 char sex[2];//性别f为女m为男 int age;//年龄 int cult;//文化程度1为专家2为博士3为硕士4为学士5为其他 int salary;//工资 int
  3. 所属分类:C

    • 发布日期:2009-05-11
    • 文件大小:84992
    • 提供者:ssybb
  1. C++般的四阶龙格-库塔算法

  2. 是用c++编写的算法,简洁明了。 #include #include double function(double x,double y) { return y-2*x/y; } /*n表示几等分,n+1表示他输出的个数*/ int RungeKutta(double y0,double a,double b,int n,double *x,double *y) { double h=(b-a)/n,k1,k2,k3,k4; int i; x [0]=a; y[0]=y0; for(i=0;i
  3. 所属分类:其它

    • 发布日期:2009-05-12
    • 文件大小:749
    • 提供者:kaixinxiaobao
  1. 一个关于牛顿和拉格朗插值法的简单程序

  2. 一个关于牛顿和拉格朗插值法的简单程序 #include #include double F(double x)//求函数的值 { double f; f=1/(1+25*x*x); return f; }
  3. 所属分类:iOS

    • 发布日期:2009-05-18
    • 文件大小:26624
    • 提供者:banbansee
  1. ssd5 fifo.h

  2. 模拟打印机 #include using namespace std; #include "fifo.h" fifo::fifo(int seconds_per_page):simulator(seconds_per_page){} void fifo::simulate(string file){ loadworkload(file); queue waiting; queue servicing; ……} ...展开收缩
  3. 所属分类:iOS

    • 发布日期:2009-05-21
    • 文件大小:6144
    • 提供者:branra
  1. C++简单设计哈服满编码

  2. #include "iostream.h" const N=5; class Stock{ public: Stock(); Stock(int n,float mi,float b,float e); void Set_Stock(int n,float ma,float mi,float b,float e); void Set_Stock(); float Get_End(); void Show_Stock(); private: int Number; float Max,Min,B
  3. 所属分类:iOS

    • 发布日期:2009-10-26
    • 文件大小:834
    • 提供者:tingzheneva
  1. 操作系统处理机调度算法代码

  2. #include #include #include int sjptime=10;//时间片长度10秒 int maxPCB=100;//最大的PCB数 typedef struct node
  3. 所属分类:其它

    • 发布日期:2010-01-14
    • 文件大小:3072
    • 提供者:sjdai47
  1. stl_algobase.h

  2. #ifndef __SGI_STL_INTERNAL_ALGOBASE_H #define __SGI_STL_INTERNAL_ALGOBASE_H #ifndef __STL_CONFIG_H #include #endif #ifndef __SGI_STL_INTERNAL_RELOPS #include #endif #ifndef __SGI_STL_INTERNAL_PAIR_H #include #endif #ifndef __TYPE_TRAITS_H #includ
  3. 所属分类:C++

    • 发布日期:2010-10-16
    • 文件大小:24576
    • 提供者:vvkkll
  1. 击鼓传花源程序,用于作业和辅助练习

  2. 这个算法比较好的算出结果,易于理解,#include enum boolean{FALSE,TRUE}; #define DefaultSize 100 #include"random.h" template
  3. 所属分类:iOS

    • 发布日期:2010-11-23
    • 文件大小:2048
    • 提供者:zxhlsc
  1. 头文件iostream 与iostream.h区别

  2. 头文件iostream 与iostream.h区别
  3. 所属分类:C++

    • 发布日期:2011-11-08
    • 文件大小:10240
    • 提供者:zhigengbird
  1. IOSTREAM.H

  2. IOSTREAM.H文件VS2003后没的
  3. 所属分类:C++

    • 发布日期:2012-03-01
    • 文件大小:2048
    • 提供者:cqzycfl
  1. vc++2008编译不了#include<iostream.h>头文件

  2. vc++2008编译不了#include头文件
  3. 所属分类:C/C++

    • 发布日期:2012-05-23
    • 文件大小:891
    • 提供者:fjwbf
  1. iostream 和 iostream.h的区别

  2. c++ iostream iostream .h 的区别 内容有点少 希望对大家有帮助
  3. 所属分类:C++

    • 发布日期:2012-10-24
    • 文件大小:13312
    • 提供者:wangjulong123
  1. #include"iostream.h"

  2. #include"iostream.h" #include"stdlib.h" class memory; class memorynode { public: friend class memory; memorynode(int add,int s);//初始内存空间 memorynode(char n,int s);//分区
  3. 所属分类:iOS

    • 发布日期:2008-10-29
    • 文件大小:12288
    • 提供者:lixuedong99
  1. #include <iostream.h> void main(void) { cout<<"Hello world!"; cout<<endl; }

  2. #include void main(void) { cout<<"Hello world!"; cout<<endl; }
  3. 所属分类:电子商务

    • 发布日期:2015-04-10
    • 文件大小:59392
    • 提供者:qq_27294777
  1. 蛋白质CC结构域Marcoil

  2. linux 安装报错iostream.h fstream.h No such file or directory 解决安装问题
  3. 所属分类:C

    • 发布日期:2016-08-03
    • 文件大小:105472
    • 提供者:huang2002003
  1. iostream.h头文件

  2. 解决部分源文件无法打开的问题,在VS2015的环境下,部分源文件无法打开,可能是源文件库中的源文件缺失了.h后缀,从程序的安装路径中找到文集库,给对应的源文件加上后缀就可以了
  3. 所属分类:C++

    • 发布日期:2019-02-11
    • 文件大小:2048
    • 提供者:dt201510701
  1. iostream与iostream.h的区别详细解析

  2. 以下是对C++中iostream与iostream.h的区别进行了详细的分析介绍,需要的朋友可以过来参考下
  3. 所属分类:其它

    • 发布日期:2020-09-05
    • 文件大小:87040
    • 提供者:weixin_38696336
  1. iostream与iostream.h的区别详细解析

  2. C++的标准类库被修订了两次,有两个标准 C92和C99,这两个库现在都在并行使用,用 .h 包含的是c92 ,不带 .h 的是c99的头文件,对于普通用户来说这两者没有什么区别,区别是在内部函数的具体实现上。旧的C++头文件是官方明确反对使用的,但旧的C头文件则没有(以保持对C的兼容性)。据说从 Visual C++ .NET 2003 开始,移除了旧的 iostream 库。其实编译器制造商不会停止对客户现有软件提供支持,所以在可以预计的将来,旧的C++头文件还会嚣张一段时间。如果能明白字符
  3. 所属分类:其它

    • 发布日期:2020-12-31
    • 文件大小:84992
    • 提供者:weixin_38557896
  1. ncursespp:具有std :: iostream功能的ncurses的现代C ++包装器-源码

  2. ncursespp 用于ncurses窗口的现代C ++包装器,具有std :: ostream和std :: istream功能。 样本 #include "wstream.h" namespace ncp = CompuBrite::ncursespp; int main() { // Initializer will setup the terminal for windows on construction and return the terminal // to n
  3. 所属分类:其它

    • 发布日期:2021-02-17
    • 文件大小:20480
    • 提供者:weixin_42101056
« 12 3 4 5 6 7 8 9 10 ... 38 »