搜索结果
找到约 200 项符合
Double-linked 的查询结果
数据库系统 /*目的:使一個複數可顯數出來
/*目的:使一個複數可顯數出來,可做+-/*,還要可以做>>跟<<的功能
題目:定義一個複數的class叫Complex,a(實部)與b(虛部)為double的型態,i表示根號-1,
1.必須包含一個建構子有兩個參數(double型態),能被用來設定物件中的變數為任意值
2.包含一個建構子只有一個參數(double型態),呼叫參數的實部且定義為"實部+0i"
3.包 ...
Jsp/Servlet 要求:编写一个应用程序
要求:编写一个应用程序,对程序中给定的四个double型数据求其最大值和最小值。
文档包括了实验要求和详细的源代码.
数学计算 多项式曲线拟合 任意介数 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as
多项式曲线拟合 任意介数 Purpose - Least-squares curve fit of arbitrary order
working in C++ Builder 2007 as a template class,
using vector<FloatType> parameters.
Added a method to handle some EMathError exceptions.
If do NOT want to use this just call PolyFit2 directly.
usage: Call PolyFit by ...
Linux/Unix编程 CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applic
CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applications. CForms applications can run on nany type of library supported by the "curses" library. CForms uses a language-based design to define forms. An application may contain C source modules, field p ...
数据结构 /* * The internal form of a hash table. * * The table is an array indexed by the hash of the k
/*
* The internal form of a hash table.
*
* The table is an array indexed by the hash of the key collisions
* are resolved by hanging a linked list of hash entries off each
* element of the array. Although this is a really simple design it
* isn t too bad given that pools have a low allocation ...
人工智能/神经网络 C/C++ implementation of the Levenberg-Marquardt non-linear least squares algorithm. levmar includes
C/C++ implementation of the Levenberg-Marquardt non-linear
least squares algorithm. levmar includes double and single precision LM versions, both
with analytic and finite difference approximated jacobians
驱动编程 This directory builds the miniport driver for Adaptec’s 1540 family of SCSI controllers. This driver
This directory builds the miniport driver for Adaptec’s 1540 family of SCSI controllers. This driver exports several functions which are used by SCSIPORT.SYS to issue SCSI requests to the devices attached to the controller, process adapter interrupts, and various other SCSI activities.
This driver ...
其他书籍 輕易學好C++編程技巧 - 進楷 (香港科技大學筆記 19課) 內容包括 1) base C++ review, 2) Pointers and Dynamic Objects, 3) R
輕易學好C++編程技巧 - 進楷 (香港科技大學筆記 19課) 內容包括
1) base C++ review,
2) Pointers and Dynamic Objects,
3) Recursion,Linked Lists,
4) Stacks and Queues,
5) Algorithm Analysis,
6) Insertion Sort and Mergesort,
7) Quicksort,
8) Heaps and Heapsort,
9) Lower Bound of Sorting and Radix Sort,
...
Java编程 (1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols
(1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col,double value),计算 ...
Java编程 (1) 实现一个Point类
(1) 实现一个Point类,该类包含表示坐标的两个int型变量x、y,构造方法Point()和Point(int xx, int yy),返回x值和y值的int getX()和int getY()方法,计算两点间距离的double distance(Point)方法。其中计算平方根用Math.sqrt()方法。
(2) 实现一个Circle类,该类包含表示圆心的Point型变量center,表示半径的int radius ...