资源列表
yuandaimabaogao
- 数值计算源代码,包括二分法,弦截法,龙贝格算法,下山法,牛顿迭代法-numerical source code, including the dichotomy, chord sheet, Lung Bergh algorithm, the mountain, the Newton iterative method
redmore
- 把中缀表达式转换为后缀表达式的算法,我的数据结构课程设计!-sergeant Chinese expression for the conversion suffix expression algorithm, the data structure my course design!
sample_iter
- 迭代器算法,对于列表数据访问,以及代码以后的维护非常有效,供大家参考-iterative algorithm for data access list, and after the code is very effective safeguard for reference
BinaryTree111
- 用C++写的寻找公共祖先,实现树的先序后序中序层次遍历,内有实验报告可以参阅。-C wrote for the public ancestors, the first realization of the tree sequence after sequence traversal sequence level, there are experimental report can be found.
DS123
- 用C语言实现动态表的源程序,包括各种必须的方法-C language movements of the source, including all necessary means
LinkedLista
- 此为初步实现,简单直观,可在此基础上增强功能。-preliminary achieve this, simple, and the basis of this enhanced functionality.
ConvertFile
- 有关文件操作以及字符串选择的代码,从文件中截取//和/* 和*/之间的代码。-the string and file manipulation choice of code from the paper interception / / and / * and * / between code.
Guo_He
- 通过数组,指针和图形进行逻辑判断! 通过键盘操作,图形界面的小程序。-through the array, pointer and graphics logical judgment! Keyboard operation, a graphical interface small procedures.
mwm
- 一种多模串匹配算法,可以加快模式串匹配的速度-a multi-string matching algorithm, can speed up the pattern matching speed
ComplexClass
- 将数学运算中的复数运算抽象为C++类的源代码-of arithmetic operation of complex abstract as category C source code
cstring
- 定义一个字符串类String,其私有成员为一个字符串指针。设计构造函数,拷贝构造函数,析构函数,设置新值函数Set, 打印成员值函数Print。借助此String类,将操作符"=="、">"、"<"的重载函数设置为String类的成员函数,实现对操作符"=="、">"、"<"的重载,使之能直接比较两个String类类型的字符串的大小,设计各种情况调用此三个重载操作符。-definition of a string type String, its private members as a str
cclasspoint
- 首先定义一个点类Point,其私有成员为其坐标X,Y。设计构造函数,拷贝构造函数,析构函数(可以什么都不做,只打印信息,表示其被调用),设置新值函数Set, 打印成员值函数Print。再定义一个线类Line,线类是在公有继承点类的基础上,新增私有成员斜率S,并设计构造函数,拷贝构造函数,析构函数(可以什么都不做,只打印信息,表示其被调用),设置新值函数Set, 打印成员值函数Print以及其它你认为对访问此Line类对象有用的成员函数。并用此Line类定义对象,调用所有成员函数。尤其是考察构造函