搜索资源列表
cmoban
- 参照栈类模板的例子编写一个队列类模板class <T> Queue,私有成员包括:队首指针Front,队尾指针Tail,队列容积max。实现:构造函数Queue,析构函数,入队函数In,出队函数Out(每次出队,后面的元素自动前移一位),判队列空函数Empty。并分别用队列类模板定义int和float对象,调用各个成员函数-reference stack class template examples of the preparation of a class template cl
jeromel
- 利用Hash技术统计单词的频度。扫描一个C源程序,用Hash表存储该程序中出现的关键字,并统计该程序中的关键字出现的频度。用线性探测法解决Hash冲突。设Hash函数为:Hash(Key)=[(Key的首字母序号)*100+(Key的尾字母序号)] Mod 41 -use statistical word frequency. Scanning a C source files, using the hash table storage procedures of the keyword s
LinkQueue
- 队列(Queue)是限定只能在表的一端进行插入和在另一端进行删除操作的线性表。在表中,允许插入的一端称作\"队列尾(tail)\",允许删除的另一端称作\"队列头(front)\"。
SqQueue
- 队列(Queue)是限定只能在表的一端进行插入和在另一端进行删除操作的线性表。在表中,允许插入的一端称作\"队列尾(tail)\",允许删除的另一端称作\"队列头(front)\"。
顺序表算法实现,如初始化,尾插法
- 顺序表算法实现,如初始化,尾插法,输出,判断是否为空,插入元素,删除等-Sequence table algorithm, such as initialization, tail interpolation, the output, to determine whether the air, into the element, delete, etc.
vectoralist
- 练习vector和list的使用 定义一个空的vector,元素类型int,生成10个随机数插入到vector中,用迭代器遍历vector并输出其中的元素值。在vector头部插入一个随机数,用迭代器遍历vector并输出其中的元素值。用泛型算法find查找某个随机数,如果找到便输出,否则将此数插入vector尾部。用泛型算法sort将vector排序,用迭代器遍历vector并输出其中的元素值。将vector清空。 定义一个list,并重复上述实验,并注意观察结果。 -Exerc
calculator
- 采用带头结点的单链表存储一元稀疏多项式;一元稀疏多项式简单计算器的基本功能是:⑴输入并采用尾插法建立多项式的单链表;⑵输出多项式单链表,输出形式可为整数序列和指数形式⑶多项式pn(x)和qm(x)相加,建立多项式pn(x)+qm(x),可不重新开辟存储空间;⑷多项式pn(x)和qm(x)相减,建立多项式pn(x)-qm(x),可不重新开辟存储空间;-Unary sparse polynomial simple calculator Input and the establishment of
Stack544014
- 用模板实现顺序栈的基本功能:初始化;判断栈空;判断栈满;置空栈;入栈;出栈;要求入栈时,栈非满是可以插入元素,否则抛除异常;出栈时,栈非空返回栈顶元素,否则抛除异常。(陈儒焕组) 5、队列是只允许在一端进行插入操作,而另一端进行删除操作的线性表。如何改造数组实现队列的顺序存储。要求:用模板实现队列的判空;判满;置队空;出队,队列非空时,出队队首元素,否则报错;出队,队列非满时,插入新元素到队尾,否则报错; -The template is the order of the stack t
2010519808159
- QQ2010尾巴病毒 可以给 QQ 发送 自定义的网址和消息-QQ2010 tail to QQ virus can send a custom URL and message
guangyibiaofanxu
- 广义表的反序 逆置广义表的递归模型如下: F(LS) = null 若 LS 为空 F(LS) = LS 若 LS 为原子,且 tail(LS) 为空 F(LS) = append( F(tail(LS)), head(LS) ) 若 LS->tag=0 ,且 LS->tp!=null F(LS) = append( F(tail(LS), F(head(LS)) ) 若 LS->tag=1
gep
- Gene expression programming, a genotype/phenotype genetic algorithm (linear and ramified), is presented here for the first time as a new technique for the creation of computer programs. Gene expression programming uses character linear chromosome
yaoweijuanjima
- 基于matlab的咬尾卷积码,对数据进行编码,再利用维特比译码的方式进行解码,大学课程设计内容。-Based on matlab tail biting convolutional codes, to encode the data, and then use the Viterbi decoding the way to decode the University curriculum content.
bidir_bsort
- 从头和尾同时进行冒泡排序-Do bubble sort from the head and from the tail at the same time
广义表的表头和表尾
- 广义表是线性表的推广。广义表是n个元素的有限序列,元素可以是原子或一个广义表,记为LS。 若元素是广义表称它为LS的子表。若广义表非空,则第一个元素称表头,其余元素称表尾。 表的深度是指表展开后所含括号的层数。 把与树对应的广义表称为纯表,它限制了表中成分的共享和递归; 允许结点共享的表称为再入表; 允许递归的表称为递归表; 相互关系:线性表∈纯表∈再入表∈递归表; 广义表的特殊运算:1)取表头head(LS);2)取表尾tail(LS) -generalized l
linklist
- 模拟带头结点和不带头结点的前插法和尾插法,帮助理解-Simulation to take the lead and does not take the lead node node Insert and tail interpolation to help understand
arrow3D_pub
- 在matlab中绘制3d箭头,方向、颜色及头尾比例可调。-3d at matlab Drawing arrows, direction, color and proportion of adjustable head and tail.
try03
- 假定一个单向循环链表来表示队列(即循环链队),该队列只设一个队尾指针,不设队首指针,试编写下列各种运算的算法: 1) 向循环链队插入一个元素值为x的结点。 2) 从循环链队中删除一个结点。 3) 访问队列 -The assumption that a one-way circle to indicate the queue list (that is, the cycle chain teams), which is only a team queue tail pointer
xunhuanliedui
- 2. 假设以数组sequ[m]存放循环队列的元素,同时设变量rear和quelen 分别指示循环队列中队尾元素的位置和内含元素的个数。编写实现该循环队列的入队和出队操作的算法。提示:队空的条件:sq->quelen==0;队满的条件:sq->quelen==m。-2. Assuming an array sequ [m] cycle queue storage elements, while the variable set, respectively, rear and instr
Topsort
- 所谓拓扑排序是指将顶点按照拓扑次序排列。有几种简单的算法可以求出一个图的拓扑次序。一种算法的思想如下: (1)在有向图中查找一个没有后继(或前驱)的顶点并添加到顶点表中。 (2)从图中删除该顶点和所有以该顶点为头(尾)的弧。 -The so-called topological sorting refers to the vertex order in accordance with the topology. There are several simple algor
SkTCodes
- SkewT分布是近年来得到广泛使用的一种参数化分布。区别于传统的正太分布、学生-t分布,SkewT分布除了具有厚伟特征之外,还引入了偏斜特征。该分布对于金融领域的研究与应用具有十分重要的价值。当然,也是一个重要的统计工具。SkewT分布由Bruce E. Hansen(1994)构造,本源码包括SkewT分布的密度函数、累计概率、随机数生成、理论矩。-SkewT distribution has been widely used recently. Different from traditio