Question: #ifndef MYRECORD_AVL_H #define MYRECORD_AVL_H #include avl.h typedef struct { int count; float mean; float stddev; float median; } STATS; typedef struct { TNODE *root; STATS
#ifndef MYRECORD_AVL_H #define MYRECORD_AVL_H #include "avl.h" typedef struct { int count; float mean; float stddev; float median; } STATS; typedef struct { TNODE *root; STATS stats; } AVL; void merge_tree(TNODE **rootp1, TNODE **rootp2); void merge_data(AVL *t1, AVL *t2); void clear_avl(AVL *avl); #endif
This is myrecord_avl.h
#include
This is myrecord_avl.c
PLEASE COMPLETE THE CODE
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
