Skip to content

Instantly share code, notes, and snippets.

@tarcisio-marinho
Created December 20, 2017 20:59
Show Gist options
  • Save tarcisio-marinho/9bc8959a34dd8610cf22491f69a51287 to your computer and use it in GitHub Desktop.
Save tarcisio-marinho/9bc8959a34dd8610cf22491f69a51287 to your computer and use it in GitHub Desktop.
typedef struct node {
int n; //how many keys on the node
int chaves[4]; //keys
struct node *sibilims[5]; //pointer to sibilims
} Node;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment