资源列表
d
- 稀疏矩阵的压缩存储: 实现稀疏矩阵压缩存储,并实现矩阵转置和求和。 输入矩阵时,首先需要输入非零元素的个数,然后分别输入矩阵的 行号,列号和值。 输完2个矩阵后,自动进行计算第一个矩阵的转置以及两个矩阵的和。 例如:输入如下: 100 90 5 //矩阵的行数为100,列数为90,共5个非零元素。 1 10 100 //a(1,10)=100 50 60 200//a(50,60)=200 50 80 100//a(50,80)=10
FBP重建算法
- 基于C语言编程的C语言投影,滤波反投影重建算法,从外界加载的图片。
chandc2
- 图的邻接表存储与深度优先遍历.设计图的邻接表存储结构,数据元素的数据部分可以是随机生成的整数;设计图的深度优先遍历算法;-a vc++ program about the store of a graph and how to go over it
bingxingjisuan
- 一个基于区域分解和MPI消息传递接口技术的关于热传导方程的求解。-A domain decomposition and MPI message passing interface technology on thermal conduction equations based.
quadtree
- 四分树的构造,二叉树的进阶版,算法入门竞赛里面的题目-The structure of the four tree, binary tree premium, introduction to algorithms inside the title of the competition
数据结构源码
- 严尉敏,吴伟民版数据结构源代码,全部都能运行通过,可供学习数据结构这门课程的人员参考,提升对数据结构的掌握
DeLinkList
- 双循环链表的创建,节点的插入,节点的删除,销毁链表,清空链表-Double circular linked list is created, the node insert, delete nodes, destruction linked, empty list, etc.
data logger
- votage data logger pic16f877a microcontroller
D8
- 这是一个完整的D8算法。在VIsual Studio上实现。-the code of D8
nibolan
- 设计一个算法,将一般算术表达式转化为逆波兰表达式,并求逆波兰表达式的值。可以实现+、-、*、/和带括号的运算,如6+(7-1)*3+10/2.(C语言实现)-Design an algorithm that will generally arithmetic expression into a reverse polish expression, and the value of reverse polish expression. Can realize the+,-,*,/and (), s
4.17
- 编写一个递归算法实现: T(n)=T[n/2](向上取整)+T[n/2](向下取整)+n T(1)=1 然后用栈来模拟递归调用,重新编写一个算法. -Write a recursive algorithm implementation: T (n) = T (rounded up) [n/2]+ T n/2+ n (round down) T (1) = 1 Then use the stack to simulate the recursive call to w
calculator
- 一元稀疏多项式计算器,利用链表实现,有+- ,微分,积分,最大公因式,最小公倍式等功能-One yuan sparse polynomial calculator, use the list to achieve, there are+-* /, differentiation, integration, maximum common divisor, least common multiple functions