搜索资源列表
word-report
- :常用开发工具的报表设计工具把报表在形式上分解成四个部分:标题区、表头区、表体区和表尾区,操作繁琐,专业 性强,难满足用户定制报表格式及-临时报表生成的要求。本文在把报表抽象成两个组成部分即报表的格式和报表的数 据项的基础上,基于报表模板建立一个通用的ActiveX报表控件,用以弥补开发工具中报表处理功能的不足。 关键词:报表控件;定制报表;报表组成;报表模板-Abstract:The report design tools of common developer’s kit usu
PrintGrid
- MSFlexGrid是一种有用的用网格方式表达数据的方式,但打印它的内容时会发生什么?这里我提供了一个类, PrintGrid,它可以分页打印网格内容。它使用了第二个网格控件,必须把它额外地插入到你的CFormView 对话框资源中或你的对话框中上-MSFlexGrid is one kind is useful with the grid way expression data way, when prints its content what can have? Here I have p
111111
- 1、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算。 2、科学计算函数,包括正弦、余弦、正切、开方、平方、阶乘、指数、对数等函数运行。 3、以角度、弧度两种方式实现上述部分函数。 4、具备历史计算的记忆功能。 5、对不正确的表达式能指出其错误原因。 6、整理上机步骤、完成实验报告、提交可运行的程序,给出实验数据和实验结果。 -1, binary, octal, decimal and hexadecimal number of add, subt
Stooge_sorting
- 排序算法 用分而治之的思想 把原问题划分为前2/3 子问题 和后2/3子问题。时间复杂度为哦(n^logn2/3) -using divide and conque method to sort a series of data .the time complexity is (n^logn2/3)
Three_tier
- The code is an example about the three-tier architecture model,which is the fundamental framework for the logical design model. During an application s life cycle, the three-tier approach provides benefits such as reusability, flexibility, manageab
DecisionTree
- A Decision Tree program implemented in Java, which have to divide data into a Binary tree structure
Calculator
- 多功能计算软件程序清单 功能要求:具备整型数据、浮点型数据的算术(加、减、乘、除)运算功能。 依次输入运算符(+,-,*,/)、第一个运算数、第二个运算数,然后输出结果, 当用户输入 Q 则退出系统,否则允许用户连续进行运算。-Multi-function calculation software program list functional requirements: with integer data, floating-point data arithmetic (ad
Calculator
- 这是一个精简的迷你计算器应用软件程序,里面采用栈操作对输入数据和操作符进行处理,可以进行加减乘除表达式(含括弧)的计算。希望对你有用-This is a streamlined mini-calculator software program, which uses stack operations on the input data and operators to process, you can add or subtract multiply and divide expressions
algorithm2
- 最大子段和/三种方法/c++语言/(内有报告) 蛮力法,动态规划法,分治法。 可比较时间,随机输入数据...... -The largest sub-segment and/three methods/c++ language/(within report) brute force method, dynamic programming, divide and conquer. Comparable time, the random input data ......
2.2
- 2.2、线性时间选择(分治策略) 实验数据:input.txt(共100个数据) ——要求找出序列中最小的元素 将最小元素输出到output.txt文件中 -2.2, linear time selection (divide and conquer strategy) experimental data: input.txt (a total of 100 data)- the minimum required to identify sequence elements in
1
- 用分治法求第k小元素 输入:程序从标准输入读入数据,第一行是一个整数n (1=<n<=100000)表示元素的个数,接下来的n行中每行有一个整数。最后一行是k,就是我们要找的第k小元素。 -Method used divide and conquer a small element of k-input: program read from standard input data, the first line is an integer n (1 = <n<
max-and-min
- 算法与数据结构,分治算法求最大值最小值,也是一次作业-Algorithms and data structures, divide and conquer algorithm
calculator
- 简易计算器.基本的实现了数据的加减乘除,代码运用了sender as减少了代码量-Simple calculator. The basic realized data add, subtract, multiply and divide, the code used to reduce the code as keep
Dtriangulation-cdel
- 离散高程点生成TIN的算法,分治算法,速度还可以,对于数据量比较大的情况也有不错的处理速度 和效果。-Discrete elevation points to generate the TIN algorithm, divide and conquer algorithm, the speed can also be larger than the data also has good processing speed and effect.
LLANcontrrlA
- 局域网屏幕监控系统是主要由客户端和服务器端两部分组成。客户端模块该模块主要用于抓取屏幕信息,进行数据压缩,然后划分数据报,向服务器端发送数据,并等待服务器发来的确认信息。服务器端模块该模块主要用于接收收客户端发送的数据报,然后向客户端发送确认信息,接着组合数据报为JPEG数据流,最后显示JPEG图像。操作注意事项(1)可执行文件位置:Server\Debug\Server.exe Client\De -The LAN screen monitoring system is mainly co
vhdl_text2
- 设计输入数据宽度是4bit的ADD、SUB、MULT、DIVIDE、COMPARE 把它们作为一个project,DEVICE选用EPF10K70RC240-4,对它们进行 时序仿真,将仿真波形-Design input data width the 4bit ADD, SUB, MULT, DIVIDE, COMPARE them as a project, the DEVICE selection EPF10K70RC240-4, and timing simulation, s
Expression-evaluation
- 输入中缀算术表达式S,S中的操作数为非负整数,只含+,-和*,/运算,也可能含有括号(),运算符的计算顺序和实际四则运算的计算顺序相同. 输出表达式S的值. 注意除法运算只取整数部分,例如1/2=0. Input 输入有多组数据. 每组数据是一个算术表达式S,S的长度不超过100. 输入的S保证合法,而且不包含多余的空格或制表符. S的操作数、中间结果和最终结果都不会超过int类型的范围,也不会出现除数为0的情况. 输入以#号结束. Output 对于每个算术表达式S,输
3D-to-2D-conversion-of-data
- divide images in parts and reshape them to original size
src_divide
- TAG to delete the given value at any point of time
flash_downloader
- * 1. DownloadRequest client -> server when download start * Client inform server download start. * 2. DownloadRequestReply server -> client reply DownloadRequest * Server tell client file splitting plan. * 3. DownloadStatus client ->