搜索资源列表
CMatrixClass
- 1.内存管理一律根据实际需要的大小在堆中动态分配内存。 2.边界检查。如果数组下标超越了数组大小界限,会给出警告信息,可以防止非法内存访问以及方便程序的调试。 3.重载了+,-,*,+=,-=,数乘等常见运算符; 4.可以保存数组为二进制数据文件和文本文件两种形式,也可以从二进制数据文件和文本文件读取数据到数组。 5.实现了和矩阵相关的线性代数方程组求解算法。一是高斯选主元消去法二是针对三对角矩阵的追赶法。 6.静态函数Bspline3():3次
dijkstra
- 个人完成的dijkstra algorithm例程.直接读取文本文件并完成计算.设置为最大可读512点.
Huffmancoding.rar
- 对文本文件进行huffman编码、解码 读取文本文件,并统计文件中字母个数 建立huffman树 对文件进行huffman编码 对文件进行huffman解码 ,Text documents huffman encoding, decoding to read a text file, and the number of statistical documents the establishment of letters of the document tree huffman
TestFind
- 实现文本格式文件中的括号匹配. 匹配算法采用堆栈来实现. 文件读取异常还需完善的人性化一些-Text format documents matching brackets. Matching algorithm uses the stack to achieve. Paper anomaly needs to be well-read human nature of some `` ``
biaodashiqiuzhisuanfa
- 扩充课堂上讨论的表达式求值算法的功能,使得算法除了能进行加(+)、减(–)、乘(*)、整除(/) 运算之外,还能进行乘方(^)运算。 乘方运算符的优先级高于加、减、乘、整除运算符,低于括号;多个乘方运算符连续出现时,从右往左计算。 输入数据从文本文件“实习3数据.txt”中读取。该文件只有一行:一个用分号(;)结尾的表达式。 输出结果显示在屏幕上。 例如,若从文本文件中读取的数据是: 4+(2^2^3*4-120)*2 屏幕显示计算结果: 1812
FrameWorkMatrix
- 计算骨架阵的算法,数组是动态分配的,用类写的,有很好的封装性和移植性。并且输入时从文本文件TXT读取的!-Skeleton matrix calculation algorithm, the array is dynamically allocated, with the class to write, have a good package and portability. And input from a text file TXT read!
kkk
- 给定K个单词作为文本的开始。程序每次生成一个单词,其过程为:读取文本中最后的K个单词,并在书中寻找这K个单词连续出现的所有位置,然后从中随机挑选一个位置,并把该位置之后的一个单词加入到文本中。该过程不断重复,直到生成的文本达到最大单词数,或者生成的单词恰好是这本书的最后一个单词。-Given K words as the beginning of the text. Each program generates a word, the process is: read the text in a
CountKeyword
- 输入C语言保留字文本文件、C语言源程序文件,输出记录对应C语言源文件中各关键词出现次数的文本文件。 完成以下功能:读取C语言保留字文本文件,建立C语言保留字链表;建立逐行读取给定C语言源文件,分解出每个单词并与C语言关键词进行比较,记录各关键词出现的次数,将所有关键词出现的次数保存到给定文本文件;要考虑用命令行参数实现该任务。 要应用以下知识点:文件的读写;字符数组的操作;命令行参数的使用。 -Enter the C language reserved word text file,
huffman
- 实现赫夫曼输的编码和译码功能把生成的树保存在一个文本里,编译时从中读取并编译-Implement Huffman encoding and decoding functions lose the generated tree stored in a text, the compilation from which to read and compile
filecreate
- 程序对文本文件的建立和用户权限的设置进行了说明,掩饰了C++中文件的操作方式、和读取方法-Procedures for the establishment of the text file and set user rights are described, covering the C++ in the file mode of operation, and reading methods
STACKS
- 堆栈、队列的链式实现 基本要求:所设计的程序要有简单的DOS界面,方便用户进行操作,完成以下功能: 以链式存储方式,实现堆栈的入栈、出栈、取栈顶元素功能。 以链式存储方式,实现带表头结点的循环队列的入队、出队、取队首元素、求队列长度。 查找出队列中的最大元素。 利用所实现的堆栈对队列中元素进行逆置,并将结果输出到文本文件中。 提高要求: 系统运行时能从文本文件中读取堆栈、队列元素信息,运行结束能将堆栈、队列最新元素信息保存至相应文件中。-Stack, queue ch
11View
- 字符串分解,首先读取一个文本文件,按照行进行空格获一定自定义格式进行劈分,然后将其进行输出成一个文件-String decomposition, first read a text file, in line with the space custom format by a certain splitting, then the output into a file
matri
- 读取文本文件生成生树,这是数据结构重要内容.-Students read a text file to generate the tree, which is an important part of the data structure.
text
- 单词统计程序,使之能处理任意长度的单词。 如下功能:1.从数据文件读取字符文本 2.对单词按照频度排序(按大到小)输出。-Word statistical procedures, so that it can handle any length of words. The following functions: 1. Read characters from a text data file 2 in accordance with the frequency of word order
inOut
- VC控制台下的编程,主要实现人外部文本文件读取数据,并同时写出到外部另一个文件。希望这份小东西能对急切需要此类功能的同学有帮助。-VC console programming, the main external text files were read, while another write to the external file. Hope this code can help the students who command such functions.
string_trans
- 从文本文件中读取按照一定格式存储的数据,并经过字符串处理,将数据存储到数组中。主要用到了char*到浮点数的转换,文件读取的一些常用函数。-Read from a text file format for storing data according to certain, and after a string processing, the data stored in the array. Main use of the floating-point conversion to char*,
chengxu
- 从一文本中读取单词,统计其出现的频率,并按频率大小输出到另一文本中。这里的单词是分二种,一种是ASCII码大于0x20小于0X80字符,第 二种是小于0x20以及大于0x80的字符。这里我用的是哈希表,这样能很快查找读取的单词是否已经存在。排序我用的是二个循环,按理来说可以改进-It is very good program!
hoffman-encodeadecode
- 数据结构与算法的一个课程设计,内含实验报告。主要功能有: 用户可以执行的的功能有: (1)---选择读取某个源文件由系统解析建立哈夫曼树 (2)---手动输入字符集及其权值信息建立哈夫曼树 (3)---打印字符集的哈夫曼编码到屏幕 (4)---选择某个文本文件进行编码 (5)---选择某个代码文件进行译码 -Data structures and algorithms, a curriculum design, containing experimental r
binarytree-read
- 层次读取文本文件中的数据,最终由先序的方式输出。-Level reading text files in the data, the final output by the way of the first order.
GradeCompare
- 读取文本中的学生成绩信息,实用堆排序输出成绩前三名的学生信息-Read the text of student achievement information, practical heap sort output scores of the top three student information