哈夫曼编码的源程序,可以使用txt文件进行输入,并且输出到txt文件中。并且可以实现书结构的显示。
上传时间: 2016-01-11
上传用户:wangyi39
We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.
标签: represented integers group items
上传时间: 2016-01-17
上传用户:jeffery
一个中断程序,屏蔽键盘上的输入,只输出特定内容。
标签: 中断程序
上传时间: 2016-03-11
上传用户:anng
实现了的词法分析和语法分析,输入源代码,输出的是语法树。
标签: 分
上传时间: 2016-03-17
上传用户:牛布牛
(1)变换模块 本模块包含两部分内容:利用 反变换规则将 坐标系下的两相电流转换成三相电流;利用间接矢量控制,得到转子角位移,公式如下(2) 电流滞环控制器(Hysteresis current controller)模块(3) 电压源型逆变器(Voltage sourse inverter,VSI)模块 (4) 变换模块(5) 感应电机(IM)模块 该感应电机模型是基于交流电机的电路方程、转矩方程以及运动方程建立起来的。该仿真模块为一个三输入、六输出的系统子模块。输入为 坐标系中定子电压,输出则是 坐标系中的转子电流和转子磁链,以及输出的转矩。(6) 电流反馈模块(7)速度控制器模块
上传时间: 2014-03-10
上传用户:yy541071797
无线ZIGBEE应用,用于模拟开关输入和LED输出,方便硬件电路和通信协议的调试。
上传时间: 2013-12-26
上传用户:maizezhen
1、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算 2、科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运行 3、以角度、弧度两种方式实现上述部分函数(对操作时计算结果能无限次随意进行角度和弧度转换) 4、具备历史计算的记忆功能(输入和计算结果表达式能查找历史表达式,如不存在放进历史表达式框中去,如存在则不做历史存储操作,并能从历史中找出来反射到输入框和输出框。) 5、对不正确的表达式能指出其错误原因
上传时间: 2013-12-01
上传用户:xjz632
用游标的方法实现对称差的计算,即 (A-B)+(B-A)
上传时间: 2016-05-23
上传用户:远远ssad
算法实现题1-2 连续和问题 « 问题描述: 给定一个正整数n,计算有多少个不同的连续自然数段,其和恰为n。例如,当n=27 时,有4 个不同的连续自然数段的和恰为27:2+3+4+5+6+7;8+9+10;13+14;27。 « 编程任务: 给定一个正整数n,试设计一个O(n)时间算法,计算有多少个不同的连续自然数段的 和恰为n。 « 数据输入: 由文件input.txt提供输入数据。文件的第1 行是正整数n。 « 结果输出: 程序运行结束时,将计算出的和恰为n的连续自然数段的个数输出到output.txt中。 输入文件示例 输出文件示例 input.txt 27 output.txt 4
上传时间: 2016-05-28
上传用户:yulg
Ex3-23 亲兄弟问题 « 问题描述: 给定n 个整数0 1 1 , , , n- a a a 组成的序列。序列中元素i a 的亲兄弟元素k a 定义为: min{ | } k i j n j j i a = a a ³ a < < 。 亲兄弟问题要求给定序列中每个元素的亲兄弟元素的位置。元素i a 的亲兄弟元素为k a 时,称k 为元素i a 的亲兄弟元素的位置。当元素i a 没有亲兄弟元素时,约定其亲兄弟元素 的位置为-1。 例如,当n=10,整数序列为6,1,4,3,6,2,4,7,3,5 时,相应的亲兄弟元素位 置序列为:4,2,4,4,7,6,7,-1,9,-1。 « 编程任务: 对于给定的n个整数0 1 1 , , , n- a a a 组成的序列,试用抽象数据类型栈,设计一个O(n) 时间算法,计算相应的亲兄弟元素位置序列。 « 数据输入: 由文件input.txt提供输入数据。文件的第1 行有1 个正整数n,表示给定给n个整数。 第2 行是0 1 1 , , , n- a a a 。 « 结果输出: 程序运行结束时,将计算出的与给定序列相应的亲兄弟元素位置序列输出到output.txt 中。 输入文件示例 输出文件示例 input.txt 10 4 2 4 4 7 6 7 -1 9 -1 output.txt 6 1 4 3 6 2 4 7 3 5
上传时间: 2013-12-17
上传用户:shizhanincc