资源列表
DaAn
- 经典算法书籍-算法导论的答案,算法导论大家都知道吧-classical algorithm books - Introduction to answer algorithm, the algorithm Introduction to everyone you know
infix
- 一个中缀表达式的求值算法 可实现表达式的求值-which is made up of an expression evaluates algorithm can achieve expression evaluates
crosslink
- 本程序是用十字链表来存储矩阵并实现两个矩阵的相乘-this procedure is used to store Chain Cross Matrix and achieve the matrix multiplication 2
forest
- 使用二叉树方法来实现一棵树或者森林,数据输入是按照完全二叉树的形式来输入的。输入方式是完全二叉树上的编号 该节点的权值。-use binary tree method to achieve a tree or forest, data input is fully binary tree in the form of input. Input is completely binary tree on the number of nodes of the right value.
Wavelet-0.6a.tar
- WAVECODE 小波变换的程序包,C语言的-WAVECODE wavelet transform package, the C Language
aaaaaaaaaaaaa
- 课程安排,用拓扑排序实现 4、实现课程的拓扑排序。(选)(加) 问题描述:软件专业的学生要学习一系列课程,其中有些课程必须在其先修课程完成后才能学习,具体关系见下表: 课程编号 课程名称 先决条件 C1 程序设计基础 无 C2 离散数学 C1 C3 数据结构 C1,C2 C4 汇编语言 C1 C5 操作系统 C3 假设每门课程的学习时间为一学期,试为该专业的学生设计教学计划,使他们能在最短的时间内修完这些课程。-curriculum, using topolo
999999
- 数据结构试验中一个有关于非递归算法的源程序,很适合于初学者参考。-test data structure on a non - recursive algorithm of the source is well-suited to beginners reference.
fsm
- 一个有限状态机的实现源代码。C语言实现。-a finite state machine to achieve the source code. C language.
ACKFunction
- 实现阿克曼函数并统计递归调用次数 Counting times of recursion calling 1. 问题描述 定义阿克曼递归函数: ACK(0,n)=n+1 n>=0 ACK(m,0)=ACK(m-1,1) m>=1 ACK(m,n)=ACK(m-1,ACK(m,n-1)) m,n>0 2. 基本要求 读入m、n,输出ACK(m,n)的值,并统计递归调用次数。-Ackermann achieve statistical a
TriMat
- 在目录“\\上三角矩阵类的实现”中给定了文件triMat.cpp、triMat.h,请把triMat.h文件中的9个填空位置补上正确的代码,使triMat.cpp能完成上三角矩阵的加、减、乘运算。要求输入: 输入矩阵维数:4 输入矩阵a的元素(包括0): 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 输入矩阵b的元素(包括0): 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 -in the di
classstr2
- 完善字符串类的运算符功能 1、 利用运算符重载完善字符串类的运算符功能。如: 串+整数;整数+串;浮点数+串;串-串;串/串 等; 2、 编制一个带菜单的小系统,演示该类的运算符操作。 -perfect string Operators such a function, using Operator perfect string category Operators function. Such as : String Integer; Integer string;
PackageProblem
- 实现背包问题 package problem 1. 问题描述 假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 读入T、n、w1 , w2 , … , wn