登录
首页 » 数据结构 » 还原一个简单的二叉树和树的屏幕上输出的小程序,帮助…

还原一个简单的二叉树和树的屏幕上输出的小程序,帮助…

于 2022-01-22 发布 文件大小:1.82 MB
0 74
下载积分: 2 下载次数: 1

代码说明:

一个简单还原二叉树并在屏幕输出树形的小程序,帮同学做的数据结构作业,估计对初学者会有些帮助-Restore a simple binary tree and tree on the screen output of the applet to help students to do homework data structure, it is estimated that it might be useful for beginners

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 二叉树的遍历
    二叉树的遍历方式,包括先序遍历 层序遍历,最后用凹入表示法表示出来,对初学数据结构的孩子很有帮助,使用文本文档写的,复制粘贴就可以用。
    2022-08-31 18:45:02下载
    积分:1
  • 采用EVEN方法实现排列 生成{1,2,3,4,……n}的全排列,每个排列只出现一次...
    采用EVEN方法实现排列 生成{1,2,3,4,……n}的全排列,每个排列只出现一次-EVEN method used to generate array (1,2,3,4, ... ... n) of the entire array, each with only one
    2022-08-22 23:54:17下载
    积分:1
  • A*算法,自己通过学习写的,希望大家多多指点.....mqfcu7@tom.com
    A*算法,自己通过学习写的,希望大家多多指点.....mqfcu7@tom.com-A* algorithm, by learning to write their own, and I hope a lot of pointing everyone ..... mqfcu7@tom.com
    2022-02-04 15:13:47下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • map indicates that the data structure
    图的表示 数据结构-map indicates that the data structure
    2022-09-18 10:25:03下载
    积分:1
  • ISAM system containing BTREE source, such as
    ISAM系统实现,含有BTREE源码,等-ISAM system containing BTREE source, such as
    2023-05-03 20:50:03下载
    积分:1
  • 二叉树的遍历实现:
    对二叉树的遍历的简单实现,作为数据结构的入门程序还是很好的,虽然很简单但是当初我作为初学者想方设法写出这个小程序的时候还是发现了自己理解上的一些盲点。数据结构重在实践,大家多练~一起加油,里面还包含了我最开始写的时候容易犯的一些错误。里面有为实现层次遍历写到的队列结构和为非递归用到的栈的结构。
    2022-07-12 15:28:31下载
    积分:1
  • SQL Server 7.0开发指南,很好的电子书籍。有兴趣的朋友看看吧。...
    SQL Server 7.0开发指南,很好的电子书籍。有兴趣的朋友看看吧。-Guide to the development of a good e-books. Interested friends to see it.
    2023-05-28 07:20:03下载
    积分:1
  • 仓库建模技术详解
    数据仓库建模技术详解-data warehouse technology Elaborates on Modeling
    2022-08-19 03:06:09下载
    积分:1
  • 队列,1、 掌握队列的顺序存储和“假溢出”的处理方法 2、 设计用标志位解决“假溢出”问题的顺序队列...
    队列,1、 掌握队列的顺序存储结构和“假溢出”的处理方法 2、 设计用标志位解决“假溢出”问题的顺序队列 -cohort, 1, the master queue storage structure and sequence "false spillover" of the two treatment methods. Design signs spaces, "false spillover" in the order queue
    2022-10-19 02:35:03下载
    积分:1
  • 696518资源总数
  • 104230会员总数
  • 58今日下载