搜索资源列表

  1. 高级通信程序

    0下载:
  2. 这是一个自我感觉很好的通信程序,它的特点: 1.数据包格式全部自己定义。 所有的定义和通信核心类全部在COMM文件夹中。 2.能处理大量客户端同时通信的情况,客户和服务端共用相同的通信对象,并且可以实现互传。 3.通信细节全部封装在几个通用的类中,隐藏了交互通信的所有处理细节,如断包处理,超时重发等功能。 4.数据通信和数据具体应用完全分离,扩展性良好,本例中只做一个上传文件的例子,你可以在不用改动通信核心的
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:214000
    • 提供者:sr
  1. JavaexErciseSource

    0下载:
  2. 学习Java的过程中所做的联系的汇总 字符串的输入、字符串转化到整数、异常处理、流 最大公约数和最小公倍数 字符ASCII码的比较 一元二次方程根 求根公式 窗口类、按钮类、窗口中对象(如按钮)的布局、事件、绘图(Paint) 复选框、单选框、列表框、下拉选择框 菜单类、对话框类 绘图、绘图函数 按钮类、标签类 -learning through the process linked to the summary o
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2795
    • 提供者:星曦
  1. bignum

    0下载:
  2. 设计超长整数类,完成超长整数的加、减、乘、整除、取余运算。-long integer type design, long integer completed the addition, subtraction, multiplication and divisible to admit I computing.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1827
    • 提供者:tf
  1. Experiment02 intSet整数类

    0下载:
  2. 整数类的课程设计作业-Integer type of curriculum design operations
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:1806
    • 提供者:吕杰
  1. 带附件及Html显示的邮件发送类

    0下载:
  2. unit UnitSendMail;

    interface

    uses
      Windows, SysUtils, Classes,StdCtrls, ExtCtrls, ComCtrls, Dialogs,
      IdMessage, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,

  3. 所属分类:Dephi控件源码

    • 发布日期:2009-01-14
    • 文件大小:1685
    • 提供者:kennyxue
  1. Experiment02 intSet整数类

    0下载:
  2. 整数类的课程设计作业-Integer type of curriculum design operations
  3. 所属分类:文档资料

    • 发布日期:2024-05-26
    • 文件大小:2048
    • 提供者:吕杰
  1. RSAVC

    0下载:
  2. RSA算法的VC实现,其中包括超长整数类,素数检验算法,大素数生成器和一般的数论算法,例如中国剩余定理解密RSA密文-RSA algorithm VC, including long integer type, in a few test algorithm, large prime number generator and the general theory of numbers algorithm, for example, Ch
  3. 所属分类:加密解密

    • 发布日期:2024-05-26
    • 文件大小:258048
    • 提供者:陈建湘
  1. bigintsz

    0下载:
  2. 本代码是一个大整数类的定义,采用函数重载实现,可以定义任意大的整数。-This code is a big integer class definition, the use of function overloading to achieve, can be defined arbitrarily large integer.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-26
    • 文件大小:4096
    • 提供者:kevin
  1. fraction_1

    0下载:
  2. 分数类,可以实现分数的加减乘除,及分数与整数的混合运算-Score category, you can realize addition and subtraction, multiplication and division scores, and scores with a mixture of integer calculations
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-26
    • 文件大小:179200
    • 提供者:liangyang
  1. antyy

    0下载:
  2. 本论文围绕蚁群算法的理论及其应用,就如何解决非线性整数规划问题、连续性伏化问题、聚类问题、与其它算法混合以及收敛性进行了较为深入、系统的研究。 -In this paper, the theory surrounding the ant colony algorithm and its application on how to solve the nonlinear integer programming problem, the
  3. 所属分类:matlab例程

    • 发布日期:2024-05-26
    • 文件大小:5346304
    • 提供者:高阳
  1. BigInteger

    0下载:
  2. 一个基于c#的大整数类,内含各种大整数的操作-Based on the c# Big integer type that contains a variety of large integer operations
  3. 所属分类:C#编程

    • 发布日期:2024-05-26
    • 文件大小:26624
    • 提供者:xi
  1. 2

    0下载:
  2. 设计一个类模板,用于对数组进行排序、查找、求元素和,并以整数数组和实数组进行编程测试。-The design of a class template, used to sort the array, find, and elements and, and an integer array and is programmed to test the array.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-26
    • 文件大小:1024
    • 提供者:fanxiu
  1. fraction

    0下载:
  2. 1.自定义分数类fraction,使用该类可以完成分数的输入、分数的加、减、乘、除二目运算和一目减运算、分数的约分操作、分数的通分操作、分数的倒数运算、对两个分数进行六种比较运算、以及对分数的输出等操作。 2.改造上述分数类,将其中使用的普通函数尽量改写成运算符重载函数。如,可重载+、-、*、/、>、>=、<、<=、==、!=,以实现分数的各种运算。并且实现分数与整数的混合运算。 3.从分数类派生出一个用
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-05-26
    • 文件大小:770048
    • 提供者:yedan
  1. lab7

    0下载:
  2. (1). 编写程序定义基类Animal,成员变量age为私有的,构造派生类dog,在其成员函数SetAge(int n)中直接对age赋值时会出现什么问题?把age变为公有的呢? (2).定义一个基类BaseClass,有整形变量Number,构造其派生类DerivedClass,观察构造函数和析构函数的执行情况. (3). 编写一个车(vehicle)基类,由此派生出自行车(bicycle)类和汽车(motorcar)类,注意
  3. 所属分类:其他小程序

    • 发布日期:2024-05-26
    • 文件大小:1024
    • 提供者:ljqiang
  1. Integer

    0下载:
  2. 使用java.lang.Math类,当键盘输入10个整数(0-99),找出它们之中的最大者及最小者,并统计大于50的整数个数。 * 且运用异常处理。(eg: 101, 1a ...)-Use java.lang.Math class, when the keyboard input 10 integer (0-99), the largest of them were identified and the least, and a
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-26
    • 文件大小:2048
    • 提供者:zxq
  1. The-handling-of-large-integer-class

    0下载:
  2. 处理大的整数类,能够实现大的整数的加减操作-The handling of large integer class, it is possible to realize a large integer addition and subtraction operation
  3. 所属分类:其他小程序

    • 发布日期:2024-05-26
    • 文件大小:2048
    • 提供者:zhouyang
  1. Integer

    0下载:
  2. 功能相对完整的大整数类,Integer 数据类型提供了针对 32 位处理器的优化性能-Relatively complete integer class, Integer data type provides optimized performance for 32-bit processors
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-26
    • 文件大小:5120
    • 提供者:黄志杰
  1. HugeInt

    0下载:
  2. 巨型整数类,可以执行对超出long long范围的巨型整数的运算,多种构造方式,经大量数据测试无bug。(The giant integer class can perform operations on large integers over the long long range, multiple construction methods, and a large number of data tests without bug.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-26
    • 文件大小:6144
    • 提供者:中分大少
  1. 数学建模 规划类资料整理及例子

    0下载:
  2. 数学建模matlab规划类例子,包括线性规划、整数规划、目标规划、非线性规划等(Examples of mathematical modeling matlab planning, including linear programming, integer programming, goal programming, nonlinear programming, etc.)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-26
    • 文件大小:11264
    • 提供者:九天玹月
  1. bigint

    0下载:
  2. 实现大整数类设计一个程序实现两个任意长的整数(包括正数和负数)、任意精度实数的算术运算。 提示: (1)用动态链表存贮数据,每结点含一个整型变量,表示若干位数(Support for an integer with arbitrary accuracy and its operation)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-26
    • 文件大小:4096
    • 提供者:乔1
« 12 3 4 5 6 7 8 9 10 ... 17 »

源码中国 www.ymcn.org