Commit 324561f2 authored by elijah vasquez's avatar elijah vasquez 🦍

THIRD

parent 4aa04155
#include <stdio.h> #include <stdio.h>
typedef struct node
{
char nodeName[20];
int DOBDay;
int DOBMonth;
int DOBYear;
int Index;
struct node *left;
struct node *right;
} node;
int CreateIndex(int day, int month, int year)
{
}
node* CreateNode(char Name[20], int day, int month, int year)
{
}
void InsertNode(node **root, node *new_node)
{
}
void DisplayBirthday(node *anode)
{
}
void BirthdaysInOrder(node *anode)
{
}
void BirthdaysBetween(node *anode, int index1, int index2)
{
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment