数据结构
jingjishisi
这个作者很懒,什么都没留下…
展开
-
向AVL树插入的非递归函数
向AVL树插入的非递归函数:#include<stdio.h>#include<stdlib.h>typedef struct AVLTREE{ int Element; int H; struct AVLTREE *Lef原创 2018-05-22 17:40:29 · 1245 阅读 · 0 评论 -
无序堆上滤为二叉堆
数据结构习题6-4,在无序堆中进行上滤,使其成为二叉堆。(下滤方法书中有介绍,结合DeleteMin中的下滤方法即可编写出程序。)#include<stdio.h>#include<stdlib.h>#define MinData 0#ifndef _BinHeap_Hstruct HeapStruct;typedef struct HeapStruct ...原创 2018-05-22 17:55:44 · 376 阅读 · 0 评论