18 lines
194 B
C
18 lines
194 B
C
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
struct node {
|
||
|
int key;
|
||
|
uint32_t height;
|
||
|
struct node *left;
|
||
|
struct node *right;
|
||
|
};
|
||
|
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|