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

搜索资源列表

  1. csvfielddump

  2. 一个把数据导出为CVS格式的类 This class can pull only the specified fields from a csv file. you can specify either the field numbers or field names to pull out. Also it can just show you a numbered list of the csv headers. Also in the class i\'ve added some code
  3. 所属分类:其它

    • 发布日期:2004-08-03
    • 文件大小:2048
    • 提供者:ljs2002
  1. C语言程序设计标准教程

  2. 比较详实 第三章: C语言程序设计初步 C语言程序设计 本课介绍C语言程序设计的基本方法和基本的程序语句。 从程序流程的角度来看,程序可以分为三种基本结构, 即顺序结构、分支结构、循环结构。 这三种基本结构可以组成所有的各种复杂程序。C语言提供了多种语句来实现这些程序结构。 本章介绍这些基本语句及其应用,使读者对C程序有一个初步的认识, 为后面各章的学习打下基础。 C程序的语句 C程序的执行部分是由语句组成的。 程序的功能也是由执行语句实现的。 C语句可分为以下五类: 1.表达式语句 2.函数
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:162
    • 提供者:fanhaoqiang
  1. C语言程序设计标准教程

  2. 比较详实 第四章: 数组 数 组   数组在程序设计中,为了处理方便, 把具有相同类型的若干变量按有序的形式组织起来。这些按序排列的同类数据元素的集合称为数组。在C语言中, 数组属于构造数据类型。一个数组可以分解为多个数组元素,这些数组元素可以是基本数据类型或是构造类型。因此按数组元素的类型不同,数组又可分为数值数组、字符数组、指针数组、结构数组等各种类别。   本章介绍数值数组和字符数组,其余的在以后各章陆续介绍。数组类型说明 在C语言中使用数组必须先进行类型说明。 数组说明的一般形 式为:
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:19456
    • 提供者:fanhaoqiang
  1. C语言程序设计标准教程

  2. 适于初学者 第五章:函数 概述   在第一章中已经介绍过,C源程序是由函数组成的。 虽然在前面各章的程序中都只有一个主函数main(), 但实用程序往往由多个函数组成。函数是C源程序的基本模块, 通过对函数模块的调用实现特定的功能。C语言中的函数相当于其它高级语言的子程序。 C语言不仅提供了极为丰富的库函数(如Turbo C,MS C 都提供了三百多个库函数),还允许用户建立自己定义的函数。用户可把自己的算法编成一个个相对独立的函数模块,然后用调用的方法来使用函数。   可以说C程序的全部工作
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:40960
    • 提供者:fanhaoqiang
  1. C语言程序设计标准教程

  2. 适用于初学者第六章:指针 指针简介   指针是C语言中广泛使用的一种数据类型。 运用指针编程是C语言最主要的风格之一。利用指针变量可以表示各种数据结构; 能很方便地使用数组和字符串; 并能象汇编语言一样处理内存地址,从而编出精练而高效的程序。指针极大地丰富了C语言的功能。 学习指针是学习C语言中最重要的一环, 能否正确理解和使用指针是我们是否掌握C语言的一个标志。同时, 指针也是C语言中最为困难的一部分,在学习中除了要正确理解基本概念,还必须要多编程,上机调试。只要作到这些,指针也是不难掌握的
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:30720
    • 提供者:fanhaoqiang
  1. C语言程序设计经典例子

  2. 适用于初学者    经典c程序100例==11--20 【程序11】 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月    后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... 2.程序源代码: #include "stdio.h" #include "conio.h" main() { long f1,f2; int i; f1=f2=1; for(i=1;i<
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:6144
    • 提供者:fanhaoqiang
  1. C语言程序设计经典例子

  2. 适用于初学者    将灸c殻會100箭==61--70 ‐殻會61/ 籾朕・嬉咫竃剋市眉叔侘・勣箔嬉咫竃10佩泌和夕・    1.殻會蛍裂・        1       1  1       1  2  1       1  3  3  1       1  4  6  4  1       1  5  10 10 5  1  2.殻會坿旗鷹・ #include "stdio.h" #include "conio.h" main() { int i,j; int a[ 10][10]; pr
  3. 所属分类:C#

    • 发布日期:2009-05-22
    • 文件大小:7168
    • 提供者:fanhaoqiang
  1. ACM解题报告(北大)

  2. POJ部分解题代码 解题报告:Fence 题目来源:POJ 1031 解法或类型: 计算几何 作者:杨清玄 Fence Time Limit:1S Memory Limit:1000K Total Submit:103 Accepted:26 Descr iption There is an area bounded by a fence on some flat field. The fence has the height h and in the plane projection it
  3. 所属分类:其它

    • 发布日期:2009-05-23
    • 文件大小:10485760
    • 提供者:dexinmeng
  1. POJ 1002 487-3279 telephone numbers

  2. 487-3279 Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 102808 Accepted: 17241 Descr iption Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase.
  3. 所属分类:C

    • 发布日期:2009-06-01
    • 文件大小:1024
    • 提供者:Lethe1989
  1. ZJU_ACM_All_Anwer 搞编程的都知道的浙江大学A 题库.本书 集了所有经 Z 题解集,集合并附 Mathimaticsumerical algorithms 数值算法

  2. ZJU_Main 主页 下一页 ZJU 题型分类 文演整理版 2008-3-23 数论: 1007 Numerical Summation of a Series 简单题,还是蛮有意思的 1045 HangOver 简单题 1049 I Think I Need a Houseboat 简单题 1028 Flip and Shift 简单题,可以DP/BFS/……,但 是实际上有数学方法可直接判断出来 1026 Modular multiplication of polynomials 简单题
  3. 所属分类:其它

    • 发布日期:2009-06-30
    • 文件大小:842752
    • 提供者:xuhaofeng221
  1. ACM POJ 1002题解摘要

  2. Descr iption Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For example, you can call the University of Waterloo by dialing the memorable TUT-GLOP. So
  3. 所属分类:C

    • 发布日期:2009-07-02
    • 文件大小:1024
    • 提供者:wch2005
  1. 嵌入式实验(消息队列)

  2. #include #include #include "vxWorks.h" #include "msgQLib.h" #include "taskLib.h" /*#include "memPartLib.h"*/ #include "memLib.h" /*宏定义*/ #define MAX_MSGS (10) /* the length of msg*/ #define MAX_MSG_LEN sizeof(MESSAGE) /*the length of message*/ #de
  3. 所属分类:硬件开发

    • 发布日期:2009-07-08
    • 文件大小:10240
    • 提供者:buptxch
  1. 算法书(algorithm)

  2. S. Dasgupta, C.H. Papadimitriou, and U.V. Vazirani 的 algorithm Table of contents Preface Chapter 0: Prologue Chapter 1: Algorithms with numbers Chapter 2: Divide-and-conquer algorithms Chapter 3: Decompositions of graphs Chapter 4: Paths in graphs C
  3. 所属分类:C

    • 发布日期:2009-09-26
    • 文件大小:1048576
    • 提供者:chollen
  1. POJ 1002 487-3279 telephone numbers

  2. 487-3279 Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 102808 Accepted: 17241 Descr iption Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase.
  3. 所属分类:C

    • 发布日期:2010-04-18
    • 文件大小:1024
    • 提供者:zdy520991740
  1. POJ3292-Semi-prime H-numbers

  2. 北大POJ3292-Semi-prime H-numbers 解题报告+AC代码
  3. 所属分类:C/C++

    • 发布日期:2011-07-31
    • 文件大小:6144
    • 提供者:lyy289065406
  1. Adding Reversed Numbers

  2. #include "stdafx.h" #include "iostream" #include "fstream" #include "algorithm" #include "string" #include "vector" #include "cmath" using namespace std; int main(int argc, char* argv[]) { ifstream cin("input.txt"); int n; vector v; string a,b,t; in
  3. 所属分类:C/C++

    • 发布日期:2012-02-19
    • 文件大小:2048
    • 提供者:ningqiao999
  1. Elements of Abstract and Linear Algebra - E. H. Connell

  2. Intended for a first course on the subject, this text begins from scratch and develops the standard topics of Linear Algebra. Its progresses simply towards its ultimate goal, the Theorem of Hurwitz, which argues that the only normed algebras over th
  3. 所属分类:专业指导

    • 发布日期:2012-05-06
    • 文件大小:705536
    • 提供者:ronnie_alonso
  1. Betti numbers of locally standard 2-torus manifolds

  2. 局部标准模2环面流形的Betti数,陈君达,吕志,设$M^n$为一个具有局部标准模2环面群作用的光滑闭流形。这篇文章研究了$M^n$的模2 Betti数与作用的轨道空间的模2 Betti数及$h$-向量之间的�
  3. 所属分类:其它

    • 发布日期:2019-12-28
    • 文件大小:136192
    • 提供者:weixin_38600341
  1. tcl 入门学习.md

  2. ## 1 自定义命令 (1)编写自定义命令 > 1 编写自定义命令内容 > 2 注册指定命令 ```tcl /* *set up numbers sort command */ #include #include #include #include // numbers sort int NumSort(ClientData ClientData, Tcl_Interp *Interp, int objc, Tcl_Obj *const objv[]) { d
  3. 所属分类:电信

    • 发布日期:2020-07-12
    • 文件大小:232
    • 提供者:qq_43352441
  1. pynt-by-numbers:生成“网格”数字绘画表-源码

  2. 按数字排列 “这个名字真蠢。” 介绍 该项目使您可以将像素艺术图像转换为“数字绘画”风格的拼图。 与某些其他服务不同,生成的图像将是包括背景像素在内的整个网格。 这样,源图像可以更好地隐藏。 例 安装 确保已安装Python 3和Pip,然后通过以下方法安装依赖项: python3 -m pip install -r requirements.txt 用法 该程序需要输入文件路径,网格大小(以像素为单位)和输出文件路径。 您还可以选择指定--legend标志,该标志将在底部显示颜色键。 没有
  3. 所属分类:其它

    • 发布日期:2021-02-05
    • 文件大小:158720
    • 提供者:weixin_42103587
« 12 3 4 5 6 7 8 9 10 »