Welcome![Sign In][Sign Up]
Location:
Search - D1.1

Search list

[Other resourcexyyyxtv1.1

Description: 心愿音乐系统1.1 测试结果 采用风声无组件上传,可以上传 2m以下的文件 这个可能跟网速有关系,我测试上传4k/秒 有其他根好上传组件和好的建议方法请跟我联系 http://bbs.lt52.com/ qq:112934475 1内核采用风声无组件上传类 v2.0 2代码容易维护采用Macromedia Dreamweaver MX软件编写 一 文件说明 conn.asp 连接数据库,第一次使用修改数据库名称 index.asp 音乐系统首页 player.asp 播放器支持 mp3/wma/asf/rm/ram的格式的播放 error.asp 错误提示页 息 pic文件夹 放网页图片资料 风声无组件上传类 v2.0几个重要文件 upload1.asp UpLoadClass.asp function.js UpLoadFile文件夹 上传专用文件夹 数据库 UpLoadClass.mdb 版本升级说明 2004-7.29(心愿音乐系统1.1) 添加 推荐歌曲 top歌曲 上传歌曲 作者菜单导航! 2004-7-27 心愿音乐系统 欢迎大家来测试!1.0 http://bbs.lt52.com/ qq:112934475-wish Music System 1.1 test results without using wind components upload 2m following documents with the network speed may be related I upload test 4k / s other well-Upload components and a good way please contact me http : / / bbs.lt52.com / qq : 112934475 1 core components without using wind upload type 2 v2.0 easier to maintain code using Macro media Dreamweaver MX software to prepare a document explains conn.asp connect to the database , the first to use a modified name database system index.asp Home player.asp music player mp3/wma/asf/rm/ram support for the format of error messages broadcast error.asp interest pic folder Fang website photos without wind components upload category v2.0 several important documents Uploader d1.asp UpLoadClass.asp function.js UpLoadFile Upload fold
Platform: | Size: 30349 | Author: 张天师 | Hits:

[Mathimatics-Numerical algorithms一种线性规划的方法

Description: 本程序也是从网站上搜集的来,仅用于网友之间的交流于促进 Private Sub Command1_Click() Dim a() As Single, ji() As Single, b() As Single, x() As Single Dim M As Integer, N As Integer, d1 As Integer, d2 As Integer, q As Integer, e1 As Integer, e2 As Integer M = InputBox("请输入约束方程个数:") N = InputBox("请输入变量个数:") d1 = InputBox("请输入>=约束方程个数:") d2 = InputBox("请输入=约束方程个数:") q = M + N + d1
Platform: | Size: 964 | Author: bbqx88@126.com | Hits:

[File Format股票格式文档

Description: 数据结构共分三个结构体: 1. 开始部分,存放一些全局数据的结构体(共24个字节) 由0x00 - 0x17开始 起止地址 数据内容 数据含义 数据类型 00 - 03 F4 9B 13 FC 日线文件标志 Integer 04 - 07 10 02 00 00 保留 Integer 08 - 0B 00 00 00 00 保留 Integer 0C - 0F D1 04 00 00 证券总数 Integer 10 - 13 81 0C 00 00 需添加之起始块号 Integer 就是文件的最后,计算方法是 0x41000 + 这个数字 * 8192 14 - 17 48 0C 00 00 当前最后空块号 Integer 最后一个空块 方法同上,就是说写数据,就在这个地方写,写完就在上面地方新增加新的块
Platform: | Size: 700505 | Author: lum_lin@hotmail.com | Hits:

[OtherC++程序设计语言实验三

Description: 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(),用以改变静态数据成员rate的值。定义两个不同的SavingsAccount对象saver1和saver2,当前存款数额balance分别为2000.00和3000.00。首先将rate设置为3%,计算每个存款人的月息并打印新的结果,然后将rate设置为4%,再次计算每个存款人的月息并打印新的结果。 2, 设计一个学生类student,包括学生学号、姓名、成绩;设计一个友元函数,比较某两个学生成绩的高低;读入一个文本文件(格式如示例studengt.txt,每行的学号、姓名、成绩之间用四个空格隔开)中所有学生的学号、姓名、成绩,输出最高成绩和最低成绩的学生信息(学号、姓名、成绩)。 3, 阅读下面例子,将题中的Time类声明为Data类的友元类,通过Time类中的display函数引用Data类的私有数据,输出年、月、日和时、分、秒。 #include <iostream> using namespace std; class Date; //对Date类的提前引用声明 class Time //定义Time类 { public: Time(int,int,int); void display(Date &); //display是成员函数,形参是Date类对象的引用 private: int hour; int minute; int sec; }; class Date //声明Date类 { public: Date(int,int,int); friend void Time∷display(Date &); //声明Time中的display函数为友元成员函数 private: int month; int day; int year; }; Time∷Time(int h,int m,int s) //类Time的构造函数 { hour=h; minute=m; sec=s; } void Time∷display(Date &d) //display的作用是输出年、月、日和时、分、秒 { cout<<d.month<<″/″<<d.day<<″/″<<d.year<<endl; //引用Date类对象中的私有数据 cout<<hour<<″:″<<minute<<″:″<<sec<<endl; //引用本类对象中的私有数据 } Date∷Date(int m,int d,int y) //类Date的构造函数 { month=m; day=d; year=y; } int main( ) { Time t1(10,13,56); //定义Time类对象t1 Date d1(12,25,2004); //定义Date类对象d1 t1.display(d1); //调用t1中的display函数,实参是Date类对象d1 return 0; } 4, 将下面程序改为在类模板外定义各成员函数: #include <iostream> using namespace std; template<class numtype> //定义类模板 class Compare { public: Compare(numtype a,numtype b) { x=a;y=b; } numtype max( ) { return (x>y)?x:y; } numtype min( ) { return (x<y)?x:y; } private: numtype x,y; }; int main( ) { Compare<int> cmp1(3,7); //定义对象cmp1,用于两个整数的比较 cout<<cmp1.max( )<<″ is the Maximum of two integer numbers.″<<endl; cout<<cmp1.min( )<<″ is the Minimum of two integer numbers.″<<endl<<endl; Compare<float> cmp2(45.78,93.6); //定义对象cmp2,用于两个浮点数的比较 cout<<cmp2.max( )<<″ is the Maximum of two float numbers.″<<endl; cout<<cmp2.min( )<<″ is the Minimum of two float numbers.″<<endl<<endl; Compare<char> cmp3(′a′,′A′); //定义对象cmp3,用于两个字符的比较 cout<<cmp3.max( )<<″ is the Maximum of two characters.″<<endl; cout<<cmp3.min( )<<″ is the Minimum of two characters.″<<endl; return 0; } 5, 有两个矩阵a和b,均为2行3列,求两个矩阵的和。重载运算符“+”使之用于矩阵相加。如:c=a+b。重载插入运算符“<<”和流提取运算符“>>”,使之能用于该矩阵的输入和输出。 6, 利用类继承分别完成一个学生类、一个大学生类、一个本科生类,本科生类中包括了一个学生作为他的班长。在创建一个本科生对象时赋予他的全部信息,输出该本科生对象的全部信息。 7, 利用c++继承、多态虚函数、构造函数完成以下程序:设计人、老师、学生、大学生、研究生、大四学生等类、其主要属性自己定义,要求包括以下方法: 1) 构造函数,创建对象的主要信息 2) Display,显示每种类对象的主要信息 此外,要求每个类包含一个生日对象,其类型为Birthday类,学生类应该包含一个班主任对象,其类型为老师类。 三、实验要求  将程序源代码压缩后提交至学院FTP上对应实验和班级的目录中。  作业命名方式为:“学号姓名.rar”。  作业提交时间:下次实验课前提交。
Platform: | Size: 1255695 | Author: zhuchao0731@163.com | Hits:

[Otherd1

Description: 这是我平时无聊写着玩的用于图像的绘制,有椭圆和矩形,应用于WINDOWS界面。-This is my usual boring play written for image mapping, oval and rectangular, use Windows interface.
Platform: | Size: 44032 | Author: 覃茂运 | Hits:

[SQL Serverxyyyxtv1.1

Description: 心愿音乐系统1.1 测试结果 采用风声无组件上传,可以上传 2m以下的文件 这个可能跟网速有关系,我测试上传4k/秒 有其他根好上传组件和好的建议方法请跟我联系 http://bbs.lt52.com/ qq:112934475 1内核采用风声无组件上传类 v2.0 2代码容易维护采用Macromedia Dreamweaver MX软件编写 一 文件说明 conn.asp 连接数据库,第一次使用修改数据库名称 index.asp 音乐系统首页 player.asp 播放器支持 mp3/wma/asf/rm/ram的格式的播放 error.asp 错误提示页 息 pic文件夹 放网页图片资料 风声无组件上传类 v2.0几个重要文件 upload1.asp UpLoadClass.asp function.js UpLoadFile文件夹 上传专用文件夹 数据库 UpLoadClass.mdb 版本升级说明 2004-7.29(心愿音乐系统1.1) 添加 推荐歌曲 top歌曲 上传歌曲 作者菜单导航! 2004-7-27 心愿音乐系统 欢迎大家来测试!1.0 http://bbs.lt52.com/ qq:112934475-wish Music System 1.1 test results without using wind components upload 2m following documents with the network speed may be related I upload test 4k/s other well-Upload components and a good way please contact me http :// bbs.lt52.com/qq : 112934475 1 core components without using wind upload type 2 v2.0 easier to maintain code using Macro media Dreamweaver MX software to prepare a document explains conn.asp connect to the database , the first to use a modified name database system index.asp Home player.asp music player mp3/wma/asf/rm/ram support for the format of error messages broadcast error.asp interest pic folder Fang website photos without wind components upload category v2.0 several important documents Uploader d1.asp UpLoadClass.asp function.js UpLoadFile Upload fold
Platform: | Size: 29696 | Author: 张天师 | Hits:

[Data structsshellsort111

Description: 附有本人超级详细解释(看不懂的面壁十天!) 一、 实际问题: 希尔排序(Shell Sort)是插入排序的一种。因D.L.Shell于1959年提出而得名。它又称“缩小增量分类法”,在时间效率上比插入、比较、冒泡等排序算法有了较大改进。能对无序序列按一定规律进行排序。 二、数学模型: 先取一个小于n的整数d1作为第一个增量,把文件的全部记录分成d1个组。所有距离为dl的倍数的记录放在同一个组中。先在各组内进行直接插人排序;然后,取第二个增量d2<d1重复上述的分组和排序,直至所取的增量dt=1(dt<dt-l<…<d2<d1),即所有记录放在同一组中进行直接插入排序为止。该方法实质上是一种分组插入方法。 三、算法设计: 1、将相隔某个增量dlta[k]的元素构成一个子序列。在排序过程中,逐次减小这个增量,最后当h减到1时,进行一次插入排序,排序就完成。增量序列一般采用:dlta[k]=2t-k+1-1,其中t为排序趟数,1≤k≤t≤[log2 (n+1)],其中n为待排序序列的长度。按增量序列dlta[0..t-1]。 2、按增量dlta[k](1≤k≤t≤[log2 (n+1)])进行一趟希尔插入排序。 3、在主函数中控制程序执行流程。 4、时间复杂度:1≤k≤t≤[log2 (n+1)]时为O(n3/2)。 -with super detailed explanation (not read the Wall for 10 days!) A practical question : Sort Hill (Shell Sort) is inserted into a sort. By D. L. Shell made in 1959 and named after. It is also known as the "narrow incremental method" in the time-efficient than inserted, such as sorting algorithms and bubbling there has been a big improvement. The disorder can sequence by law must rank. Two mathematical models : first getting a less than n integers d1 as an increment. all documents should be recorded into d1 groups. All distance dl in multiples of record on the same group. In the first group for direct insertion sorting; Then, take a second increment d2
Platform: | Size: 19456 | Author: 乐乐 | Hits:

[Windows Developd12(forvb)

Description: 采用PDIUSBD12的EasyD12库编写的D12读写操作源程序-PDIUSBD12 EasyD12 used for the preparation of the D12 and write source
Platform: | Size: 27648 | Author: 杨松儿 | Hits:

[mpeg mp3trm2_vc

Description: MPEG -2 视频码率变换,实现D1分辨率的码率变换-MPEG-2 video bit rate conversion, realizing D1 resolution transform Rate
Platform: | Size: 705536 | Author: zhaolei | Hits:

[Special Effectsyuv_main

Description: 这是一个对352x288(或D1)连续以及各分量阈值处理的代码,看了会对buffer的数据存储以及调用很有帮助-This is a 352x288 (or D1) and the weight of consecutive threshold treatment code will read the data storage buffer and call the very helpful
Platform: | Size: 301056 | Author: heshimin | Hits:

[Data structsShellSort

Description: 希尔排序(缩小增量法) 排序过程:先取一个正整数d1<n,把所有相隔d1的记录放一组,组内进行直接插入排序;然后取d2<d1,重复上述分组和排序操作;直至di=1,即所有记录放进一个组中排序为止 -Sort Hill (narrow incremental method) sorting process: first get a positive integer d1
Platform: | Size: 346112 | Author: 文静 | Hits:

[Mathimatics-Numerical algorithmsshiyan12

Description: 编制具有如下原型的函数prime,用来判断整数n是否为素数:bool prime(int n) 而后编制主函数,任意输入一个大于4的偶数d,找出满足d=d1+d2的所有数对,其中要求d1与d2均为素数(通过调用prime来判断素数)。如偶数18可以分解为11+7以及13+5;而偶数80可以分解为:43+37、61+19、67+13、73+7。 提示:i与d-i的和恰为偶数d,而且只有当i与d-i均为奇数时才有可能成为所求的“数对”。 -Prepared with the following function prototype prime, used to determine whether an integer n prime numbers: bool prime (int n) before the preparation of the main function, indiscriminate importation of a greater than 4, even d, to find out to satisfy d = d1+ D2 all the number of , which calls for d1 and d2 are prime numbers (by calling the prime to determine prime numbers). If even 18 can be decomposed into 11+ 7 and 13+ 5 and even 80 can be decomposed into: 43+ 37,612 B! 19,672 B! 13,732 B! 7. Tip: i with di and exactly even d, and only when i and di are odd when they may become the order of a few of.
Platform: | Size: 904192 | Author: | Hits:

[Software EngineeringD1.1.2

Description: This the derivables describing WINNER PHASE 2-This is the derivables describing WINNER PHASE 2
Platform: | Size: 7772160 | Author: sam | Hits:

[AI-NN-PRAutomatically-find-its-way-demo

Description: 首先生成8个方向的节点,tmp(tmpe)用于记录生成的节点对应的节点号 ** ** 新生成的节点的指针(d1 -表示离开起始点的 距离)指向生成他的父节点 ** **, 按该点到目的地的大小nude(i).d2 排序后加入opened列表, ** ** (opened 总是指向离 目的地最近的点)然后再从opened表中取出一个节点,生成新的节点** ** ** 按8个方向生成新的节点,如果要生成的节点 已经存在(在tmp(tmpe) 中)就比较以下 ** ** 改节点的 d1值 重新修改 父节点指针 ** ** 如果达到目的地就返回 节点的序号值,如果目的地不能到达就选出 ** **一个距离目的地最近的点做为目的地,如果起始点8个方向都不能动,就返回一个false 值*-Automatically find its way demo
Platform: | Size: 34816 | Author: 赵金柯 | Hits:

[Video CaptureVideoDemo7

Description: MPEG-4视频监控系统D1\CIF 远程实时监控 16路视频-MPEG-4 video surveillance system D1 \ CIF Remote real-time monitoring of 16 video
Platform: | Size: 3665920 | Author: lwd | Hits:

[Program docscm-05-07-2006

Description: WINNER II Channel Models, D1.1.2 V1.2, IST-4-027756 WINNER II Deliverable
Platform: | Size: 223232 | Author: toxicity | Hits:

[Program docSCM2006

Description: SCM WINNER II Channel Models, D1.1.2 V1.2, IST-4-027756 WINNER II Deliverable
Platform: | Size: 32768 | Author: toxicity | Hits:

[Data structs1416

Description: 飞机加油问题 对于给定的n个国际机场到中心机场的距离d1,d2,...,dn ,以及地面加油费用s,编程计算从距中心机场最远的国际机场飞到中心机场的最少费用-For a given n international airport to the center of the airport from D1, D2,..., DN, as well as the ground refueling cost s, programming calculation from the center of the airport far international airport to fly to the minimum cost center Airport
Platform: | Size: 414720 | Author: wjf | Hits:

[Otheroscope-1.5.tar

Description: c语言编写 示波器模拟软件, 具体看英文介绍。- This is an oscilloscope program written in c using the XForms library. It uses the PC s parallel port for data input. The way it s done is as follows: first data bit 1 is set to 1 then to 0 to enable the a-to-d converter ( ADC0801 ), then we read 4 bits of data from the multiplexer ( 74LS157 ) placed after the a-to-d, then a 1 is sent to the second data bit and the other four bits of data are read. The circuit is setup as follows: ---------------------------------------------------------<---- Data bit 1 | | ---------------- -------------- | | D0|-------->----------| Select|----<---- Data bit 2 |---|Enable D1|-------->----------| | From | D2|-------->----------| O0|---->---- Status bit 4 Circuit->--|Ain D3|-------->----------| O1|---->---- Status bit 5 | D4|--------
Platform: | Size: 123904 | Author: litaohqqt | Hits:

[IME Developxir

Description: 希尔排序算法:先取一个小于n的整数d1作为第一个增量,把文件的全部记录分成d1个组。所有距离为dl的倍数的记录放在同一个组中。先在各组内进行直接插人排序-Hill sorting algorithm
Platform: | Size: 247808 | Author: mumu | Hits:
« 12 3 4 5 6 7 8 9 10 ... 14 »

CodeBus www.codebus.net