资源列表
vibe建模
- VIBE 很好的一种背景建模方法。适合运动目标的建模,不适合长时间不动的物体
hannuota
- 数据结构递归算法的实例,汉诺塔的实现,本程序使用C语言实现-Examples of recursive algorithm data structure, the realization of the Tower of Hanoi, this program uses the C language
Sequence
- 1234...n顺序进栈,计算出栈的可能序列并输出-Stack input in the sequence of 1234...n,compute the possible sequences of output
GREDDY
- 马踏棋盘!c++编写,可运行!与大家共同学习!-Horse riding board!
exchange-issues
- 贪心算法求解货币兑换问题。算法里的经典问题,用C实现的,开发环境是vs2010-Greedy algorithm currency exchange issues
maze
- 回溯法求解迷宫问题。C实现,vs2010开发环境-Backtracking to solve the maze. C implementation, vs2010 development environment
change-making
- 动态规划法求解零钱兑换问题。c语言,开发环境vs2010-Dynamic programming method change convertibility. Classical algorithm in question, c language, development environment vs2010
shortest-service
- 贪心算法求最短服务时间。c语言,开发环境vs2010-Greedy algorithm for the shortest service time. c language, development environment vs2010
maximum-field
- 算法里经典问题,求解最大字段和问题,vs2010,c-Classical algorithm in question, problem solving and the maximum field, vs2010, c
Main
- 根据先序遍历和中序遍历还原二叉树并得到后序遍历-Restore binary tree traversal based on preorder and inorder and get after preorder
Q
- 高精度数据计算,最高精度可以人为设定。高达50位以上-high precision computation
用先序递归过程建立二叉树
- 用先序递归过程建立二叉树 (存储结构:二叉链表) 输入数据按先序遍历所得序列输入,当某结点左子树或右子树为空时,输入‘*’号,如输入abc**d**e**得到的二叉树为: (选做:由二叉树的先序序列和中序序列建立一棵二叉树。) 2)编写递归算法,计算二叉树中叶子结点的数目。 3)按凹入表方式输出该二叉树。