Welcome![Sign In][Sign Up]
Location:
Search - b.txt

Search list

[CSharp文件运算器

Description: 问题描述:加减乘运算器。 要 求: 输入方式:使用给定文件进行输入; 输出方式:使用文件进行输出; 使用的数据结构:双向链表 实现的功能:实现任意位数的正负整数或小数的加法、减法和乘法运算。 具体要求:每个结点存储一位数字。算出的结果若是小数,整数部分的高位若为0要去掉,小数部分的低位若为0要去掉,若0085.56700,最后结果应为85.567。 文件说明:给定的文件a*.txt为第一个数,b*.txt为第二个数,要求加法产生的结果存储在add*.txt中,减法产生的结果存储在sub*.txt中,乘法产生的结果存储在mul*.txt中,*为对应的一组数据,共给出十组数据。 -Problem description : Modified multiplication device. Requirements : input methods : the use of the given document input; Output : the use of document output; The use of the data structure : List of achieving two-way function : to achieve any of the median plus or minus the decimal integer or additive, subtraction and multiplication. Specific requirements : each node a digital storage. If the results calculated minority integral part of the high if 0 to remove, part of a minority if low as 0 to remove. if 0085.56700 and final results should 85.567. File Description : The document given a *. txt for the first number, b *. txt for the second number, Adder request the results stored in *. txt add, subtraction the results stored in the sub *. txt, multiply the result stored in intercommunicati
Platform: | Size: 17518 | Author: 何金龙 | Hits:

[Consoleawk

Description: awk by Cao Siqin, 2007.7.17 awk <Format String> Format string: It may contain following symbols: $x: parameter x will be used here \\t = \\x07 \\n = \\x0A Example: script.txt: C:\\WINDOWS\\a logfile .log C:\\WINDOWS\\b txtfile .txt input this command in a console window: awk notepad.exe $1 $3 < script.txt then following commands will be executed: notepad C:\\WINDOWS\\a.log notepad C:\\WINDOWS\\b.txt
Platform: | Size: 31065 | Author: 孙谨 | Hits:

[Consoleawkprint

Description: 因为 Windows 下执行 awk print ... 效率实在太低,所以引入 awkprint,相当于 awkprint awkprint by Cao Siqin, 2007.7.17 awkprint <Format String> Format string: It may contain following symbols: $x: parameter x will be used here \\t = \\x07 \\n = \\x0A Example: script.txt: C:\\WINDOWS\\a logfile .log C:\\WINDOWS\\b txtfile .txt input this command in a console window: awk notepad.exe $1 $3 < script.txt then following commands will be listed: C:\\WINDOWS\\a.log C:\\WINDOWS\\b.txt
Platform: | Size: 18313 | Author: 孙谨 | Hits:

[OS programReverse1

Description: 题目:做一Win32程序,将当前目录下的文件A.txt的内容进行颠倒(第一个字和最后一个字交换,第二个字和倒数第二个交换,文件内容包括中英文,依此类推),然后另存为B.txt。 要求:使用Windows界面,程序中需应用按键或者菜单控件,并使用文件对话框。
Platform: | Size: 10096 | Author: 韩盛全 | Hits:

[OthercppScanner

Description: 用于C++源程序的单词识别, 输入C++源程序文件a.txt,输出单词二元组文件b.txt
Platform: | Size: 2409 | Author: cyp | Hits:

[OtherTXT

Description: 这是一个简单的从通讯录,完成后自己班级内部用过.是基于B/S结构的.
Platform: | Size: 3130 | Author: ziye | Hits:

[Other resourceconcatenate

Description: 文件组合合并. 该程序用于将两个文件(可以是txt或xls文件)进行组合合并,例如假设A.txt文件中含有‘00’和‘01’两行,B.txt文件中含有‘aa’和‘ bb’两行,则合并后的文件AB.txt文件中含有‘00aa’、‘ 00bb’、‘01aa’和‘ 01bb’四行。
Platform: | Size: 9015 | Author: lin | Hits:

[Data structsB+树实现旅游图站点搜索

Description: 一、 需求分析: (1) 已知某市每条公路路线及沿途所经过的站名,要实现的功能是:在任一车站终端查询知道 1、 是否有公共汽车到达指定的目的地(任一站点) 2、 若有,打印出乘车的路线(不一定唯一)。如需中途换车,应指示在哪里换哪条线路的车。 (2) 实现的数据结构:因为将公共交通图看成是一个有向图,所以选择十字链表为其数据结构。 其中有信息点为:站点的连接关系(十字链表的弧头和弧尾链域很好的实现了这个功能) 反应途径的线路号(这个当作弧的信息域,含有两个往返的方向,并且每个方向又对应着多个路线号) 站点名(当然是作顶点的信息域data域了,其中其标签顺序是申请顺序存储结构保证) (3) 算法:按选定的数据结构设计相应的算法,当乘车站到目的站有多种乘车线路是,必须确定路线的选取标准。 换车次数最少、经过的站点数最少。 (6) 测试数据如下: 采用格式统一的公交路线数据文件,具体为: 1) 采用文本文件,文件名统一为lines.txt,在文件夹中; 2) 每条路线的数据占2行(上行和下行各占1行,行在这里指以回车换行符结束),形式为“、、、[……]”,其中为长度不超过6个字符的字符串,为“上行”或者“下行”,为长度不超过20个字符的字符串,、和各个之间均用2个半角空格分隔。程序初始化时,从文件中读出数据进行初始化。
Platform: | Size: 686264 | Author: wsctlee | Hits:

[CSharp文件运算器

Description: 问题描述:加减乘运算器。 要 求: 输入方式:使用给定文件进行输入; 输出方式:使用文件进行输出; 使用的数据结构:双向链表 实现的功能:实现任意位数的正负整数或小数的加法、减法和乘法运算。 具体要求:每个结点存储一位数字。算出的结果若是小数,整数部分的高位若为0要去掉,小数部分的低位若为0要去掉,若0085.56700,最后结果应为85.567。 文件说明:给定的文件a*.txt为第一个数,b*.txt为第二个数,要求加法产生的结果存储在add*.txt中,减法产生的结果存储在sub*.txt中,乘法产生的结果存储在mul*.txt中,*为对应的一组数据,共给出十组数据。 -Problem description : Modified multiplication device. Requirements : input methods : the use of the given document input; Output : the use of document output; The use of the data structure : List of achieving two-way function : to achieve any of the median plus or minus the decimal integer or additive, subtraction and multiplication. Specific requirements : each node a digital storage. If the results calculated minority integral part of the high if 0 to remove, part of a minority if low as 0 to remove. if 0085.56700 and final results should 85.567. File Description : The document given a*. txt for the first number, b*. txt for the second number, Adder request the results stored in*. txt add, subtraction the results stored in the sub*. txt, multiply the result stored in intercommunicati
Platform: | Size: 17408 | Author: 何金龙 | Hits:

[ListView/ListBoxSelectDlg

Description: 功能完善的选定操作代码,能够实现从A ListBox 选定一个、多个、全部指定内容到B ListBox,同时指定操作为Move还是Copy。-perfect functioning of selected operating code, can be achieved from a selected A ListBox, a number, all contents of the designated B ListBox, the designated operators for the Move or Copy.
Platform: | Size: 101376 | Author: gpgu | Hits:

[Othertxt2bmp

Description: txt to bmp, and you can use it freely
Platform: | Size: 191488 | Author: | Hits:

[Consoleawk

Description: awk by Cao Siqin, 2007.7.17 awk <Format String> Format string: It may contain following symbols: $x: parameter x will be used here \t = \x07 \n = \x0A Example: script.txt: C:\WINDOWS\a logfile .log C:\WINDOWS\b txtfile .txt input this command in a console window: awk notepad.exe $1 $3 < script.txt then following commands will be executed: notepad C:\WINDOWS\a.log notepad C:\WINDOWS\b.txt
Platform: | Size: 30720 | Author: 孙谨 | Hits:

[Consoleawkprint

Description: 因为 Windows 下执行 awk print ... 效率实在太低,所以引入 awkprint,相当于 awkprint awkprint by Cao Siqin, 2007.7.17 awkprint <Format String> Format string: It may contain following symbols: $x: parameter x will be used here \t = \x07 \n = \x0A Example: script.txt: C:\WINDOWS\a logfile .log C:\WINDOWS\b txtfile .txt input this command in a console window: awk notepad.exe $1 $3 < script.txt then following commands will be listed: C:\WINDOWS\a.log C:\WINDOWS\b.txt-Because the Windows implementation of awk print ... efficiency is too low, so the introduction of awkprint, equivalent to awkprintawkprint by Cao Siqin, 2007.7.17awkprint
Platform: | Size: 18432 | Author: 孙谨 | Hits:

[ConsoleB_Tree

Description: 用控制台实现了经典的数据结构B树,可以通过测试文件.txt加载已有的B树,有插入,删除,查找的功能,加深对数据结构的理解。-Using the console to achieve the classic B tree data structure, you can pass the test document. Txt already loaded B-tree, there are insert, delete, search functions, to deepen understanding of the data structure.
Platform: | Size: 141312 | Author: waleking | Hits:

[OS programReverse1

Description: 题目:做一Win32程序,将当前目录下的文件A.txt的内容进行颠倒(第一个字和最后一个字交换,第二个字和倒数第二个交换,文件内容包括中英文,依此类推),然后另存为B.txt。 要求:使用Windows界面,程序中需应用按键或者菜单控件,并使用文件对话框。 -Topic: Does one Win32 process, the current directory under the document content A.txt reversed (the first word and the final exchange of a word, the second and penultimate word exchange, the contents of the documents, including Chinese and English, and so on ), and then Save As B.txt. Requirements: to use Windows interface, take the application process or the menu button controls, and use the file dialog.
Platform: | Size: 1975296 | Author: 韩盛全 | Hits:

[OthercppScanner

Description: 用于C++源程序的单词识别, 输入C++源程序文件a.txt,输出单词二元组文件b.txt
Platform: | Size: 2048 | Author: | Hits:

[Delphi VCLFlatStyleforD7

Description: (***FlatStyle v4.42.8.0 for DELPHI7 by comerose update***)2007.04.30 更新说明1.修正 TFlatListView 标题的平面显示(更加完美).2.增加 TFlatListView 的属性. ①ColorTitleFace以实现对标题平面颜色控制. ②ColorTitleCheck选择时的CheckBox的颜色控制. ③AllCheck对列表进行全选(只在CheckBoxs为True时有效). AllCheck=True时全选列表,AllCheck=False取消全选. ④GroundPic背景图像来源. ⑤GroundHas是否使用画背景图像(在OnDrawBackground事件中无效). ⑥GroundStretch是否放缩背景图像(在OnDrawBackground事件中无效). ⑦OnDrawBackground自定义重画事件(在GroundHas=false时,事件中有效). ⑧在标题中增加一个列表全选按钮(CheckBoxs=true和ViewStyle=vsReport时有效). 如果你之前的程序在OnCustomDraw中有代码的, 请把这些代码复制到OnDrawBackground事件中.3.修正 TFlatListBoxExt 和 TFlatCheckListExt 鼠标进入时的变色. (原来版本当列表数目显示区域少于控件区域时,会有部分地方不变色的BUG).4.优化一些代码。5.编译说明 ①首先打开 FlatVcls.dpk 包, 编译. ②再次打开 FlatStyle.dpk 包, 编译. ③成功!6.更详细的说明,请阅读内部的README.TXT文件.
Platform: | Size: 793600 | Author: 刘鑫 | Hits:

[CSharpxueshengguanlixitong

Description: 使用下面的数据,用C设计一个简单的学籍管理系统,实现出最基本的功能。 学生基本信息文件(A.TXT)及其内容:A.TXT文件不需要编程录入数据,可用文本编辑工具直接生成 学号 姓名 性别 宿舍号码 电话号码 01 张成成 男 501 87732111 02 李成华 女 101 87723112 03 王成凤 女 101 87723112 04 张明明 男 502 87734333 05 陈东 男 501 87732111 06 李果 男 502 87734333 07 张园园 女 102 87756122 … …. .. … ……….. 学生成绩基本信息文件(B.TXT)及其内容: 学号 课程编号 课程名称 学分 平时成绩 实验成绩 卷面成绩 综合成绩 实得学分 01 A01 大学物理 3 66 78 82 02 B03 高等数学 4 78 -1 90 01 B03 高等数学 4 45 -1 88 02 C01 VF 3 65 76 66 … …. ………. .. .. … -err
Platform: | Size: 649216 | Author: 钟笑 | Hits:

[Delphi VCLTxtToBin

Description: Example integer Txt To Bin Unit on Delphi
Platform: | Size: 478208 | Author: Alex | Hits:

[matlab三次B样条轨迹规划

Description: 根据三次B样条公式,算出样条曲线,并取样,把三维坐标写进txt,再用matlab绘制三维三次B样条曲线(According to the cubic B-spline formula, calculate the spline curve, and sample, the three-dimensional coordinates into the txt, and then draw three-dimensional cubic B-spline curve)
Platform: | Size: 2540544 | Author: liwei007 | Hits:
« 12 3 4 5 6 7 8 9 10 »

CodeBus www.codebus.net